X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage0%2Fhv-install-2;h=d4ae7b49460128efb5ea12d4b5256595b7f3eeef;hb=bdd3347ff8920ece383a232d12aef0d3720c8bff;hp=ef76fbd7877184e2976e078622e5f126d5c2eadc;hpb=b86e920731c7960bdae1088efcab2577a00b6548;p=hvlinux.git diff --git a/stage0/hv-install-2 b/stage0/hv-install-2 index ef76fbd..d4ae7b4 100755 --- a/stage0/hv-install-2 +++ b/stage0/hv-install-2 @@ -9,35 +9,29 @@ if [ x"${INSTALL_GLIBC}" == x"1" ]; then ipkg -m noac ${KERNEL} fi -case "${HVL_TARGET}" in - x86*) - ipkg ${FILE_PKG} - ipkg ${NCURSES} - ;; -esac - -CPPFLAGS=-fexceptions \ - ipkg ${GMP} "\ +ipkg ${GMP} "\ --enable-cxx \ --disable-static" -export LDFLAGS="-Wl,-rpath,/cross-tools/lib" +export LDFLAGS="-Wl,-rpath,${CROSS_TOOLS_DIR}/lib" ipkg ${MPFR} "\ - --enable-shared \ --disable-static \ - --with-gmp=/cross-tools" + --with-gmp=${CROSS_TOOLS_DIR}" ipkg ${MPC} "\ --disable-static \ - --with-gmp=/cross-tools \ - --with-mpfr=/cross-tools" + --with-gmp=${CROSS_TOOLS_DIR} \ + --with-mpfr=${CROSS_TOOLS_DIR}" + +ipkg ${ISL} "\ + --disable-static \ + --with-gmp-prefix=${CROSS_TOOLS_DIR}" ipkg ${CLOOG} "\ - --enable-shared \ --disable-static \ --with-bits=gmp \ - --with-gmp-prefix=/cross-tools" + --with-gmp-prefix=${CROSS_TOOLS_DIR}" LDFLAGS=""