This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Problems with make

Old posts that have not been replied to for several years.
Locked
G
Guest

Post by Guest »

I have problems making all bots above 1.3.18...

this error is from 1.6.6, it only fails on mods like channels.c, irc.c, filesys.c

-----
gcc -pipe -fPIC -Wall -O6 -funroll-loops -fexpensive-optimizations -mpentium -ma
rch=pentium -malign-loops=2 -malign-jumps=2 -malign-functions=2 -Wall -I. -I../.
./.. -I../../.. -I../../../src/mod -DHAVE_CONFIG_H -DMAKING_MODS -c .././chann
els.mod/channels.c
cpp: output pipe has been closed
{standard input}: Assembler messages:
{standard input}:11806: Warning: end of file not at end of a line; newline inser
ted
gcc: Internal compiler error: program cc1 got fatal signal 9
make[2]: *** [../channels.o] Error 1
-----

can someone help please? :smile:

P
Petersen
Owner
Posts: 685
Joined: Thu Sep 27, 2001 8:00 pm
Location: Blackpool, UK

Post by Petersen »

what os are you compiling it on? the -O6 flag in the gcc line seems unusual to me.
User avatar
stdragon
Owner
Posts: 959
Joined: Sun Sep 23, 2001 8:00 pm
Contact:

Post by stdragon »

Sounds like you are hitting a concurrent process limit, or you are running out of memory. Getting rid of -O6 and using no optimization for those modules will probably fix it.
G
Guest

Post by Guest »

Thanks... i removed that -O6 from makefiles and now make works fine... :smile:)

Locked