Update of /cvsroot/linux-vax/toolchain/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5896
Modified Files:
build_toolchain.sh
Log Message:
- Work around further uClibc breakage...
Index: build_toolchain.sh
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- build_toolchain.sh 11 Dec 2005 20:34:29 -0000 1.34
+++ build_toolchain.sh 12 Dec 2005 13:17:49 -0000 1.35
@@ -655,6 +655,7 @@
pushd "${GCC1_NATIVE_BUILD}"
# Configure
CC="${TARGET}-gcc" LDFLAGS=-static CFLAGS=-static \
+ ac_cv_func_strncmp_works=yes \
execute "${GCC_SRC}/configure" \
--disable-multilib \
--with-newlib \
@@ -673,7 +674,8 @@
${WERROR}
# Build
- build "${BUILD_GCC1}" && execute make ${MAKEFLAGS} all-gcc
+ build "${BUILD_GCC1}" && ac_cv_func_strncmp_works=yes execute \
+ make ${MAKEFLAGS} all-gcc
# Install
build "${BUILD_GCC1}" && \
|