#!/bin/bash
|
#!/bin/bash
|
|
|
if [[ ! -d gcc-5.3.0-zip ]]
|
if [[ ! -d gcc-5.3.0-zip ]]
|
then
|
then
|
tar -xjf ./gcc-5.3.0.tar.bz2 --transform s,gcc-5.3.0,gcc-5.3.0-zip,
|
tar -xjf ./gcc-5.3.0.tar.bz2 --transform s,gcc-5.3.0,gcc-5.3.0-zip,
|
cd gcc-5.3.0-zip
|
cd gcc-5.3.0-zip
|
patch -p1 <../gcc-5.3.0-specs-1.patch
|
patch -p1 <../gcc-5.3.0-specs-1.patch
|
rm gcc/config/rs6000/sysv4.h.orig
|
rm gcc/config/rs6000/sysv4.h.orig
|
patch -p1 <../gcc-zippatch.patch
|
patch -p1 <../gcc-zippatch.patch
|
cd ..
|
cd ..
|
fi
|
fi
|
|
|
set +h
|
set +h
|
set -e
|
set -e
|
CLFS_HOST="x86_64-cross-linux-gnu"
|
CLFS_HOST="x86_64-cross-linux-gnu"
|
CLFS_TARGET="zip"
|
CLFS_TARGET="zip"
|
INSTALL_BASE=`pwd`/install
|
INSTALL_BASE=`pwd`/install
|
mkdir -p ${INSTALL_BASE}/cross-tools
|
mkdir -p ${INSTALL_BASE}/cross-tools/bin
|
mkdir -p ${INSTALL_BASE}/tools/lib
|
mkdir -p ${INSTALL_BASE}/tools/lib
|
mkdir -p ${INSTALL_BASE}/usr/include
|
mkdir -p ${INSTALL_BASE}/usr/include
|
mkdir -p build-gcc
|
mkdir -p build-gcc
|
cd build-gcc
|
cd build-gcc
|
|
|
AR_FOR_TARGET=${INSTALL_BASE}/cross-tools/zip-ar
|
AR_FOR_TARGET=${INSTALL_BASE}/cross-tools/bin/zip-ar
|
AS_FOR_TARGET=${INSTALL_BASE}/cross-tools/zip-as
|
AS_FOR_TARGET=${INSTALL_BASE}/cross-tools/bin/zip-as
|
LD_FOR_TARGET=${INSTALL_BASE}/cross-tools/zip-ld
|
LD_FOR_TARGET=${INSTALL_BASE}/cross-tools/bin/zip-ld
|
NM_FOR_TARGET=${INSTALL_BASE}/cross-tools/zip-nm
|
NM_FOR_TARGET=${INSTALL_BASE}/cross-tools/bin/zip-nm
|
OBJCOPY_FOR_TARGET=${INSTALL_BASE}/cross-tools/zip-objcopy
|
OBJCOPY_FOR_TARGET=${INSTALL_BASE}/cross-tools/bin/zip-objcopy
|
OBJDUMP_FOR_TARGET=${INSTALL_BASE}/cross-tools/zip-objdump
|
OBJDUMP_FOR_TARGET=${INSTALL_BASE}/cross-tools/bin/zip-objdump
|
READELF_FOR_TARGET=${INSTALL_BASE}/cross-tools/zip-readelf
|
READELF_FOR_TARGET=${INSTALL_BASE}/cross-tools/bin/zip-readelf
|
STRIP_FOR_TARGET=${INSTALL_BASE}/cross-tools/zip-strip
|
STRIP_FOR_TARGET=${INSTALL_BASE}/cross-tools/bin/zip-strip
|
|
|
AS=as AR=ar ../gcc-5.3.0-zip/configure --with-gas \
|
AS=as AR=ar ../gcc-5.3.0-zip/configure --with-gas \
|
--prefix=${INSTALL_BASE}/cross-tools \
|
--prefix=${INSTALL_BASE}/cross-tools \
|
--target=${CLFS_TARGET} --host=${CLFS_HOST} \
|
--target=${CLFS_TARGET} --host=${CLFS_HOST} \
|
--with-sysroot=${INSTALL_BASE} \
|
--with-sysroot=${INSTALL_BASE} \
|
--with-lib-path=${INSTALL_BASE}/tools/lib \
|
--with-lib-path=${INSTALL_BASE}/tools/lib \
|
--with-local-prefix=${INSTALL_BASE}/usr \
|
--with-local-prefix=${INSTALL_BASE}/usr \
|
--with-pkgversion=zip-gcc-`date +%y%m%d` \
|
--with-pkgversion=zip-gcc-`date +%y%m%d` \
|
--disable-shared --disable-multilib \
|
--disable-shared --disable-multilib \
|
--disable-threads --disable-tls \
|
--disable-threads --disable-tls \
|
--disable-libada --disable-libsanitizer \
|
--disable-libada --disable-libsanitizer \
|
--disable-libssp --disable-libquadmath \
|
--disable-libssp --disable-libquadmath \
|
--disable-libgomp --disable-libvtv \
|
--disable-libgomp --disable-libvtv \
|
--enable-checking --disable-nls \
|
--enable-checking --disable-nls \
|
--disable-sjlj-exceptions \
|
--disable-sjlj-exceptions \
|
--disable-decimal-float --disable-fixed-point \
|
--disable-decimal-float --disable-fixed-point \
|
--disable-lto --disable-canonical-system-headers
|
--disable-lto --disable-canonical-system-headers
|
|
|
make || true
|
make || true
|
cd gcc; make || true
|
cd gcc; make || true
|
cd ../; make all-libcc1 || true
|
cd ../; make all-libcc1 || true
|
cd libcc1; make || true
|
cd libcc1; make || true
|
cd ../gcc; make || true
|
cd ../gcc; make || true
|
make install || true
|
make install || true
|
|
|
|
|