From: <dan...@us...> - 2009-10-25 18:39:07
|
Revision: 1398 http://cegcc.svn.sourceforge.net/cegcc/?rev=1398&view=rev Author: dannybackx Date: 2009-10-25 18:39:01 +0000 (Sun, 25 Oct 2009) Log Message: ----------- Add --disable-werror to the binutils command as Vincent R asked. Modified Paths: -------------- trunk/cegcc/src/scripts/ChangeLog trunk/cegcc/src/scripts/build-cegcc.sh trunk/cegcc/src/scripts/build-mingw32ce.sh trunk/cegcc/src/scripts/build-x86.sh Modified: trunk/cegcc/src/scripts/ChangeLog =================================================================== --- trunk/cegcc/src/scripts/ChangeLog 2009-10-22 19:40:20 UTC (rev 1397) +++ trunk/cegcc/src/scripts/ChangeLog 2009-10-25 18:39:01 UTC (rev 1398) @@ -1,3 +1,8 @@ +2009-10-25 Danny Backx <dan...@us...> + + * build-cegcc.sh, build-mingw32ce.sh, build-x86.sh (build_binutils) : + add --disable-werror . + 2009-08-15 Danny Backx <dan...@us...> * build-cegcc.sh : Disable building libssp. Modified: trunk/cegcc/src/scripts/build-cegcc.sh =================================================================== --- trunk/cegcc/src/scripts/build-cegcc.sh 2009-10-22 19:40:20 UTC (rev 1397) +++ trunk/cegcc/src/scripts/build-cegcc.sh 2009-10-25 18:39:01 UTC (rev 1398) @@ -192,7 +192,8 @@ --prefix=${PREFIX} \ --host=${HOST} \ --target=${TARGET} \ - --disable-nls + --disable-nls \ + --disable-werror make ${PARALLELISM} make install Modified: trunk/cegcc/src/scripts/build-mingw32ce.sh =================================================================== --- trunk/cegcc/src/scripts/build-mingw32ce.sh 2009-10-22 19:40:20 UTC (rev 1397) +++ trunk/cegcc/src/scripts/build-mingw32ce.sh 2009-10-25 18:39:01 UTC (rev 1398) @@ -191,7 +191,8 @@ --prefix=${PREFIX} \ --host=${HOST} \ --target=${TARGET} \ - --disable-nls + --disable-nls \ + --disable-werror make ${PARALLELISM} make install Modified: trunk/cegcc/src/scripts/build-x86.sh =================================================================== --- trunk/cegcc/src/scripts/build-x86.sh 2009-10-22 19:40:20 UTC (rev 1397) +++ trunk/cegcc/src/scripts/build-x86.sh 2009-10-25 18:39:01 UTC (rev 1398) @@ -191,7 +191,8 @@ --prefix=${PREFIX} \ --host=${HOST} \ --target=${TARGET} \ - --disable-nls + --disable-nls \ + --disable-werror make ${PARALLELISM} make install This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |