From: <ped...@us...> - 2007-12-25 23:00:17
|
Revision: 1114 http://cegcc.svn.sourceforge.net/cegcc/?rev=1114&view=rev Author: pedroalves Date: 2007-12-25 15:00:10 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * configure.in: Use $target_alias instead of $target. * configure: Regenerate. Modified Paths: -------------- trunk/cegcc/src/gcc/ChangeLog.ce trunk/cegcc/src/gcc/configure trunk/cegcc/src/gcc/configure.in Modified: trunk/cegcc/src/gcc/ChangeLog.ce =================================================================== --- trunk/cegcc/src/gcc/ChangeLog.ce 2007-12-25 20:41:57 UTC (rev 1113) +++ trunk/cegcc/src/gcc/ChangeLog.ce 2007-12-25 23:00:10 UTC (rev 1114) @@ -1,5 +1,10 @@ 2007-12-25 Pedro Alves <ped...@po...> + * configure.in: Use $target_alias instead of $target. + * configure: Regenerate. + +2007-12-25 Pedro Alves <ped...@po...> + * configure.in: Fix arm*-*-cegcc* and arm*-*-mingw32ce* addition, and collapse redundant CE targets support. * configure: Regenerate. Modified: trunk/cegcc/src/gcc/configure =================================================================== --- trunk/cegcc/src/gcc/configure 2007-12-25 20:41:57 UTC (rev 1113) +++ trunk/cegcc/src/gcc/configure 2007-12-25 23:00:10 UTC (rev 1114) @@ -3209,7 +3209,7 @@ *-cygwin*) FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup -L$$r/$(TARGET_SUBDIR)/winsup/cygwin -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/include -isystem $$s/winsup/cygwin/include -isystem $$s/winsup/w32api/include' ;; arm-wince-pe | arm-*-cegcc* | arm-*-mingw32ce*) - FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/${target}/include/w32api' ;; + FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/${target_alias}/include/w32api' ;; esac # If we're not building GCC, don't discard standard headers. Modified: trunk/cegcc/src/gcc/configure.in =================================================================== --- trunk/cegcc/src/gcc/configure.in 2007-12-25 20:41:57 UTC (rev 1113) +++ trunk/cegcc/src/gcc/configure.in 2007-12-25 23:00:10 UTC (rev 1114) @@ -1998,7 +1998,7 @@ *-cygwin*) FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup -L$$r/$(TARGET_SUBDIR)/winsup/cygwin -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/include -isystem $$s/winsup/cygwin/include -isystem $$s/winsup/w32api/include' ;; arm-wince-pe | arm-*-cegcc* | arm-*-mingw32ce*) - FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/${target}/include/w32api' ;; + FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -mwin32 -static -idirafter ${prefix}/${target_alias}/include/w32api' ;; esac # If we're not building GCC, don't discard standard headers. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |