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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,73c865853bdc4937,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news3.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local02.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Sat, 26 Aug 2006 13:09:56 -0500 From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Gnat storage size X-Newsreader: Tom's custom newsreader Message-ID: Date: Sat, 26 Aug 2006 13:09:56 -0500 NNTP-Posting-Host: 67.164.83.70 X-Trace: sv3-QxXnuJO1dM/pQ2ecsvxL6CIwXEvnCpt/H/jsoaOiQUiXQJRh5cz6wZnMTu6KIbQ8gcvsytizdmOM6bU!gDtKBxAA+07UBteu5NafreBdZYrdYEVtpCfGjVhpNyaC8KFX3cM+h9malYN7CpDI5gFvtCJnWwge!HQcHRyBt5nvq9A== X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news2.google.com comp.lang.ada:6395 Date: 2006-08-26T13:09:56-05:00 List-Id: What command line parameter do I need with Gnat 3.15p to increase the main program's stack size? I'm getting raised STORAGE_ERROR : big.adb:4 object too large when the command line parameter is >= 4026 with the program: with ada.command_line; procedure big is procedure try(k : in integer) is x : array(1 .. k*1042) of integer; begin x(1) := 0; end try; begin try(integer'value(ada.command_line.argument(1))); end big;