From: <ped...@us...> - 2006-11-27 21:49:46
|
Revision: 830 http://svn.sourceforge.net/cegcc/?rev=830&view=rev Author: pedroalves Date: 2006-11-27 13:49:45 -0800 (Mon, 27 Nov 2006) Log Message: ----------- * config/arm/mingw32.h (STARTFILE_SPEC): Add crt3.o and dllcrt3.o instead of crt2.o and dllcrt2.o. Modified Paths: -------------- trunk/cegcc/src/gcc/gcc/ChangeLog.ce trunk/cegcc/src/gcc/gcc/config/arm/mingw32.h Modified: trunk/cegcc/src/gcc/gcc/ChangeLog.ce =================================================================== --- trunk/cegcc/src/gcc/gcc/ChangeLog.ce 2006-11-27 21:41:44 UTC (rev 829) +++ trunk/cegcc/src/gcc/gcc/ChangeLog.ce 2006-11-27 21:49:45 UTC (rev 830) @@ -1,3 +1,8 @@ +2006-11-27 Pedro Alves <ped...@po...> + + * config/arm/mingw32.h (STARTFILE_SPEC): Add crt3.o and dllcrt3.o + instead of crt2.o and dllcrt2.o. + 2006-11-12 Pedro Alves <ped...@po...> * config/arm/wince-pe.h (TARGET_OS_CPP_BUILTINS): Delete _M_ARM Modified: trunk/cegcc/src/gcc/gcc/config/arm/mingw32.h =================================================================== --- trunk/cegcc/src/gcc/gcc/config/arm/mingw32.h 2006-11-27 21:41:44 UTC (rev 829) +++ trunk/cegcc/src/gcc/gcc/config/arm/mingw32.h 2006-11-27 21:49:45 UTC (rev 830) @@ -55,8 +55,8 @@ "%{mthreads:-lmingwthrd} -lmingw32 -lgcc -lceoldname -lmingwex -lcoredll" #undef STARTFILE_SPEC -#define STARTFILE_SPEC "%{shared|mdll:dllcrt2%O%s} \ - %{!shared:%{!mdll:crt2%O%s}} %{pg:gcrt3%O%s}" +#define STARTFILE_SPEC "%{shared|mdll:dllcrt3%O%s} \ + %{!shared:%{!mdll:crt3%O%s}} %{pg:gcrt3%O%s}" /* Override startfile prefix defaults. */ #ifndef STANDARD_STARTFILE_PREFIX_1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |