git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2778
4a8a32a2-be11-0410-ad9d-
d568d2c75423
+2003-07-26 Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
+
+ *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
+
2003-07-24 Bernhard Held <bernhard@bernhardheld.de>
* src/SDCCicode.c (operandOperation): really fixed problem with bitops
/*For the z80 and gbz80 ports, try to find where crt0.o is...
It is very important for this file to be first on the linking proccess
so the areas are set in the correct order, expecially _GSINIT*/
- if ((TARGET_IS_Z80 || TARGET_IS_GBZ80) && !options.no_std_crt0) /*For the z80, gbz80*/
+ if ((TARGET_IS_Z80 || TARGET_IS_GBZ80) &&
+ !options.no_std_crt0 && !options.nostdlib) /*For the z80, gbz80*/
{
char crt0path[PATH_MAX];
FILE * crt0fp;