Integrate patches inside git repository
[hvlinux.git] / stage0 / pkg / gcc
index 433e601..d0d37e4 100644 (file)
@@ -1,24 +1,5 @@
 #!/bin/bash
 
-hvpatch()
-{
-    # Manually applying patches if specified
-    if [ -n "${GCC_PATCHES}" ]; then
-        for p in ${GCC_PATCHES}; do
-            apply_patch ${PACKAGE}-${p}.patch ${PACKAGE}
-        done
-    fi
-
-    case "${HVL_TARGET}" in
-        "x86")
-            apply_patch ${PACKAGE}-specs-1.patch ${PACKAGE}
-            ;;
-        "x86_64")
-            apply_patch ${PACKAGE}-pure64_specs-1.patch ${PACKAGE}
-           ;;
-    esac
-}
-
 hvconfig_pre()
 {
     export AR=ar
@@ -37,6 +18,7 @@ hvconfig_pre()
         --with-gmp=/cross-tools \
         --with-ppl=/cross-tools \
         --with-cloog=/cross-tools \
+        --enable-cloog-backend=isl \
         --disable-multilib"
 
     if [ "x${HVLABEL}" = "x${GCC}-pass1" ]; then