Marc Deichmann <[EMAIL PROTECTED]> writes: > I compiled the following c code with g++/gcc 2.95/3.2/3.3 on different > stable/unstable Debian systems with 2.4/2.6 kernels (also > Athlon/Opteron/Pentium). On every system the result was the same. > > int main(void) { double a[2000000]; int b = 1; } > > When the compiled 'program' was started it exits with a 'Segmentation > fault'.
Very likely it's just the stack limit. Please try again with ulimit -s 32768 or similar. -- Falk