[fpc-pascal] could not compile lazarus "make[2]: *** [lazarus] Killed"
Henry Vermaak
henry.vermaak at gmail.com
Wed Apr 15 13:00:34 CEST 2009
2009/4/15 Benedikt Schindler <BeniSchindler at gmx.de>:
> - yes there is enough memory
how much have you got? i got a crash the other day trying to make
another locale by running localedef, and that was on 64MB of memory.
had to make a swapfile for it to work.
try and compile your projects manually, without compiling the lcl
first. something like this (you'll have to change the options):
#!/bin/bash
LAZ=/home/hcv/lazarus
LCL=$LAZ/lcl
UNIT_OPTS="-dlcl -dgtk2 -dlclgtk2 \
-Fu$LCL -Fu$LCL/interfaces/gtk2 -Fu$LCL/interfaces/gtk -Fu$LCL/widgetset \
-Fi$LCL/include -Fi$LCL/interfaces/gtk -Fi$LCL/interfaces/gtk2 -Fi. \
-FUbuild"
/usr/lib/fpc/2.3.1/ppc386 -B -O2 -CX -XX -Xs $UNIT_OPTS blank.lpr
and you should probably use -gl for the backtrace to be of any use.
henry
More information about the fpc-pascal
mailing list