From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, HK_RANDOM_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,110290bc5dc4805d X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!i39g2000cwa.googlegroups.com!not-for-mail From: "stuart clark" Newsgroups: comp.lang.ada Subject: Re: gnatmake myProg.adb -largs -Wl,-stack_size -Wl,0x4000000 Date: 9 Mar 2006 07:11:09 -0800 Organization: http://groups.google.com Message-ID: <1141917069.855716.130310@i39g2000cwa.googlegroups.com> References: <1141903048.577295.88950@v46g2000cwv.googlegroups.com> <44101EC8.5010108@mailinator.com> <1141907480.223301.141500@j33g2000cwa.googlegroups.com> <44102EC6.9070100@mailinator.com> NNTP-Posting-Host: 202.6.138.35 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1141917075 31314 127.0.0.1 (9 Mar 2006 15:11:15 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 9 Mar 2006 15:11:15 +0000 (UTC) In-Reply-To: <44102EC6.9070100@mailinator.com> User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.1) Gecko/20060111 Firefox/1.5.0.1,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: i39g2000cwa.googlegroups.com; posting-host=202.6.138.35; posting-account=wseb7A0AAACoGSN9Y-Rms_un18idFn-Q Xref: g2news1.google.com comp.lang.ada:3308 Date: 2006-03-09T07:11:09-08:00 List-Id: i have discovered how to pass switches/options to the system linker that gcc linker doesnt understand, ie use the -Wl or -Xlink switches, so gnatmake myprog -largs -Wl,-stack_size -largs = pass switches to linker -Wl, passes the -stack_size switch which gcc linker doesnt understand to the system linker which does understand to set the main taks stack size....... Stuart