Updated stage0 packages and fixed cloog compile error
[hvlinux.git] / stage0 / hv-install-2
index fffb79d..0be337f 100755 (executable)
@@ -16,26 +16,34 @@ case "${HVL_TARGET}" in
 esac
 
 CPPFLAGS=-fexceptions \
-    ipkg ${GMP} "--enable-cxx"
+    ipkg ${GMP} "\
+    --enable-cxx \
+    --disable-static"
 
 export LDFLAGS="-Wl,-rpath,/cross-tools/lib"
 
 ipkg ${MPFR} "\
     --enable-shared \
+    --disable-static \
     --with-gmp=/cross-tools"
+
 ipkg ${MPC} "\
+    --disable-static \
     --with-gmp=/cross-tools \
     --with-mpfr=/cross-tools"
-ipkg ${PPL} "\
+
+CPPFLAGS="-I/cross-tools/include" \
+    ipkg ${PPL} "\
     --enable-shared \
+    --disable-static \
     --enable-interfaces=c,cxx \
     --disable-optimization \
-    --with-libgmp-prefix=/cross-tools \
-    --with-libgmpxx-prefix=/cross-tools"
+    --with-gmp=/cross-tools"
 ipkg ${CLOOG} "\
     --enable-shared \
+    --disable-static \
     --with-bits=gmp \
-    --with-gmp=/cross-tools"
+    --with-gmp-prefix=/cross-tools"
 
 LDFLAGS=""