2006-02-03 03:32:59 +01:00
|
|
|
#!/bin/bash
|
2011-03-01 17:04:07 +01:00
|
|
|
|
|
|
|
if [ -z $GCCDATE ]; then
|
|
|
|
echo "need to set GCCDATE environment variable!"
|
|
|
|
exit 1
|
2011-03-04 14:35:25 +01:00
|
|
|
fi
|
2011-03-01 17:04:07 +01:00
|
|
|
|
2011-03-04 14:35:25 +01:00
|
|
|
export BELIBRARIES=/boot/common/lib:/boot/system/develop/lib
|
2011-03-01 17:04:07 +01:00
|
|
|
|
2006-02-03 03:32:59 +01:00
|
|
|
mkdir -p binutils-obj
|
|
|
|
cd binutils-obj
|
2011-03-01 17:04:07 +01:00
|
|
|
CFLAGS="-O2" CXXFLAGS="-O2" ../binutils/configure \
|
2011-03-04 14:35:25 +01:00
|
|
|
--prefix=/boot/common/develop/tools/gcc-2.95.3-${GCCDATE} \
|
2011-03-01 17:04:07 +01:00
|
|
|
--disable-nls --enable-shared=yes
|
2006-02-03 03:32:59 +01:00
|
|
|
make
|
|
|
|
cd ..
|