From: <ped...@us...> - 2007-12-25 23:45:18
|
Revision: 1119 http://cegcc.svn.sourceforge.net/cegcc/?rev=1119&view=rev Author: pedroalves Date: 2007-12-25 15:45:15 -0800 (Tue, 25 Dec 2007) Log Message: ----------- * build-mingw32ce-dlls.sh: Change default target to arm-mingw32ce. Remove dependency on readlink. Modified Paths: -------------- trunk/cegcc/src/ChangeLog trunk/cegcc/src/build-mingw32ce-dlls.sh Modified: trunk/cegcc/src/ChangeLog =================================================================== --- trunk/cegcc/src/ChangeLog 2007-12-25 23:39:57 UTC (rev 1118) +++ trunk/cegcc/src/ChangeLog 2007-12-25 23:45:15 UTC (rev 1119) @@ -1,5 +1,10 @@ 2007-12-25 Pedro Alves <ped...@po...> + * build-mingw32ce-dlls.sh: Change default target to arm-mingw32ce. + Remove dependency on readlink. + +2007-12-25 Pedro Alves <ped...@po...> + * build-mingw32ce.sh: Change default target to arm-mingw32ce. 2007-12-25 Pedro Alves <ped...@po...> Modified: trunk/cegcc/src/build-mingw32ce-dlls.sh =================================================================== --- trunk/cegcc/src/build-mingw32ce-dlls.sh 2007-12-25 23:39:57 UTC (rev 1118) +++ trunk/cegcc/src/build-mingw32ce-dlls.sh 2007-12-25 23:45:15 UTC (rev 1119) @@ -3,14 +3,14 @@ # Based on script from: # http://cygwin.com/ml/cygwin-apps/2006-05/msg00044.html -TARGET=arm-unknown-mingw32ce +TARGET=arm-mingw32ce PREFIX=/opt/mingw32ce GCC_VERSION=4.1.0 export PATH=${PREFIX}/bin:${PATH} -srcdir=`readlink -f ./gcc` -builddir=`readlink -f build-mingw32ce` +srcdir=`cd gcc; pwd` +builddir=`cd build-mingw32ce; pwd` pushd ${PREFIX}/${TARGET}/lib This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |