Re: My C arrays are too large

2019-09-19 Thread Brian Inglis
On 2019-09-18 14:35, Jose Isaias Cabrera wrote: > Joel Rees, on Wednesday, September 18, 2019 02:38 PM, wrote... >> 2019年9月14日(土) 3:50 Jose Isaias Cabrera, on >>> Achim Gratz, on Friday, September 13, 2019 02:39 PM, wrote... Blair, Charles E III writes: > My apologies for failing to reply

Re: My C arrays are too large

2019-09-19 Thread Jose Isaias Cabrera
> > > From: Joel Rees, on Wednesday, September 18, 2019 07:09 PM, wrote... > 2019年9月19日(木) 5:35 Jose Isaias Cabrera, on > > > Joel Rees, on Wednesday, September 18, 2019 02:38 PM, wrote... > > > > 2019年9月14日(土) 3:50 Jose Isaias Cabrera, on > > > > > > > > Achim Gratz, on Fri

Re: My C arrays are too large

2019-09-18 Thread Joel Rees
I guess I should unpack things a bit, and I may sound argumentative, but my argument is not really with anyone on this list. 2019年9月19日(木) 5:35 Jose Isaias Cabrera : > > Joel Rees, on Wednesday, September 18, 2019 02:38 PM, wrote... > > > > 2019年9月14日(土) 3:50 Jose Isaias Cabrera, on > > > > > > >

Re: My C arrays are too large

2019-09-18 Thread Eliot Moss
On 9/18/2019 4:35 PM, Jose Isaias Cabrera wrote: Joel Rees, on Wednesday, September 18, 2019 02:38 PM, wrote... 2019年9月14日(土) 3:50 Jose Isaias Cabrera, on Moss Achim Gratz, on Friday, September 13, 2019 02:39 PM, wrote... Blair, Charles E III writes: My apologies for failing to reply on-li

Re: My C arrays are too large

2019-09-18 Thread Jose Isaias Cabrera
Joel Rees, on Wednesday, September 18, 2019 02:38 PM, wrote... > > 2019年9月14日(土) 3:50 Jose Isaias Cabrera, on > > > > > Achim Gratz, on Friday, September 13, 2019 02:39 PM, wrote... > > > > > > Blair, Charles E III writes: > > > > My apologies for failing to reply on-list. I don't know how :( >

Re: My C arrays are too large

2019-09-18 Thread Joel Rees
2019年9月14日(土) 3:50 Jose Isaias Cabrera : > > Achim Gratz, on Friday, September 13, 2019 02:39 PM, wrote... > > > > Blair, Charles E III writes: > > > My apologies for failing to reply on-list. I don't know how :( > > > > > > My machine is 64 bit, and I hope I installed the correct version of > cy

Re: My C arrays are too large

2019-09-13 Thread Lee
On 9/13/19, Jose Isaias Cabrera wrote: > > Achim Gratz, on Friday, September 13, 2019 02:39 PM, wrote... >> >> Blair, Charles E III writes: >> > My apologies for failing to reply on-list. I don't know how :( >> > >> > My machine is 64 bit, and I hope I installed the correct version of >> > cygwin.

Re: My C arrays are too large

2019-09-13 Thread Jose Isaias Cabrera
Achim Gratz, on Friday, September 13, 2019 02:39 PM, wrote... > > Blair, Charles E III writes: > > My apologies for failing to reply on-list. I don't know how :( > > > > My machine is 64 bit, and I hope I installed the correct version of cygwin. > > > > This program: > > > > #include > > int mai

Re: My C arrays are too large

2019-09-13 Thread Eliot Moss
On 9/13/2019 2:39 PM, Achim Gratz wrote: Blair, Charles E III writes: My apologies for failing to reply on-list. I don't know how :( My machine is 64 bit, and I hope I installed the correct version of cygwin. This program: #include int main(){char *a[50][8192]; return 0;} compiles with gcc

Re: My C arrays are too large

2019-09-13 Thread Achim Gratz
Blair, Charles E III writes: > My apologies for failing to reply on-list. I don't know how :( > > My machine is 64 bit, and I hope I installed the correct version of cygwin. > > This program: > > #include > int main(){char *a[50][8192]; > return 0;} > > compiles with gcc (no special options) but

Re: my C arrays are too large

2019-09-13 Thread Eliot Moss
On 9/13/2019 9:21 AM, Blair, Charles E III wrote: Thank you very much for your help. Moving the big array to a global variable made the problem go away. Before that, I tried ulimit -Ss 8192 After this, the segmentation error message was still there. I tried that too. The failure seems to h

Re: my C arrays are too large

2019-09-13 Thread Blair, Charles E III
Thank you very much for your help. Moving the big array to a global variable made the problem go away. Before that, I tried ulimit -Ss 8192 After this, the segmentation error message was still there. --- My e-ma

Re: My C arrays are too large

2019-09-13 Thread Eliot Moss
On 9/13/2019 8:10 AM, Blair, Charles E III wrote: My apologies for failing to reply on-list. I don't know how :( My machine is 64 bit, and I hope I installed the correct version of cygwin. This program: #include int main(){char *a[50][8192]; return 0;} compiles with gcc (no special options)

Re: My C arrays are too large

2019-09-13 Thread Blair, Charles E III
My apologies for failing to reply on-list. I don't know how :( My machine is 64 bit, and I hope I installed the correct version of cygwin. This program: #include int main(){char *a[50][8192]; return 0;} compiles with gcc (no special options) but gives "Segmentation fault". --