gcc: remove unused cloog and ppl support for now

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2014-08-02 00:57:10 +02:00
parent 4d4a1f338f
commit cccab2efc9

View File

@ -23,9 +23,9 @@ PKG_ARCH="any"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"
PKG_SITE="http://gcc.gnu.org/" PKG_SITE="http://gcc.gnu.org/"
PKG_URL="ftp://ftp.gnu.org/gnu/gcc/$PKG_NAME-$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.bz2" PKG_URL="ftp://ftp.gnu.org/gnu/gcc/$PKG_NAME-$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.bz2"
PKG_DEPENDS_BOOTSTRAP="ccache:host autoconf:host binutils:host gmp:host mpfr:host mpc:host cloog:host ppl:host" PKG_DEPENDS_BOOTSTRAP="ccache:host autoconf:host binutils:host gmp:host mpfr:host mpc:host"
PKG_DEPENDS_TARGET="gcc:host" PKG_DEPENDS_TARGET="gcc:host"
PKG_DEPENDS_HOST="ccache:host autoconf:host binutils:host gmp:host mpfr:host mpc:host cloog:host ppl:host glibc" PKG_DEPENDS_HOST="ccache:host autoconf:host binutils:host gmp:host mpfr:host mpc:host glibc"
PKG_PRIORITY="optional" PKG_PRIORITY="optional"
PKG_SECTION="lang" PKG_SECTION="lang"
PKG_SHORTDESC="gcc: The GNU Compiler Collection Version 4 (aka GNU C Compiler)" PKG_SHORTDESC="gcc: The GNU Compiler Collection Version 4 (aka GNU C Compiler)"
@ -42,9 +42,8 @@ BOOTSTRAP_CONFIGURE_OPTS="--host=$HOST_NAME \
--with-gmp=$ROOT/$TOOLCHAIN \ --with-gmp=$ROOT/$TOOLCHAIN \
--with-mpfr=$ROOT/$TOOLCHAIN \ --with-mpfr=$ROOT/$TOOLCHAIN \
--with-mpc=$ROOT/$TOOLCHAIN \ --with-mpc=$ROOT/$TOOLCHAIN \
--with-ppl=$ROOT/$TOOLCHAIN \ --without-ppl \
--disable-ppl-version-check \ --without-cloog \
--with-cloog=$ROOT/$TOOLCHAIN \
--with-gnu-as \ --with-gnu-as \
--with-gnu-ld \ --with-gnu-ld \
--enable-languages=c \ --enable-languages=c \
@ -70,7 +69,6 @@ BOOTSTRAP_CONFIGURE_OPTS="--host=$HOST_NAME \
--disable-decimal-float \ --disable-decimal-float \
$GCC_OPTS \ $GCC_OPTS \
--disable-nls \ --disable-nls \
--disable-cloog-version-check \
--enable-checking=release" --enable-checking=release"
PKG_CONFIGURE_OPTS_HOST="--target=$TARGET_NAME \ PKG_CONFIGURE_OPTS_HOST="--target=$TARGET_NAME \
@ -78,9 +76,8 @@ PKG_CONFIGURE_OPTS_HOST="--target=$TARGET_NAME \
--with-gmp=$ROOT/$TOOLCHAIN \ --with-gmp=$ROOT/$TOOLCHAIN \
--with-mpfr=$ROOT/$TOOLCHAIN \ --with-mpfr=$ROOT/$TOOLCHAIN \
--with-mpc=$ROOT/$TOOLCHAIN \ --with-mpc=$ROOT/$TOOLCHAIN \
--with-ppl=$ROOT/$TOOLCHAIN \ --without-ppl \
--disable-ppl-version-check \ --without-cloog \
--with-cloog=$ROOT/$TOOLCHAIN \
--enable-languages=${TOOLCHAIN_LANGUAGES} \ --enable-languages=${TOOLCHAIN_LANGUAGES} \
--with-gnu-as \ --with-gnu-as \
--with-gnu-ld \ --with-gnu-ld \
@ -96,7 +93,6 @@ PKG_CONFIGURE_OPTS_HOST="--target=$TARGET_NAME \
--enable-plugin \ --enable-plugin \
--enable-lto \ --enable-lto \
--disable-libquadmath \ --disable-libquadmath \
--enable-cloog-backend=isl \
--enable-tls \ --enable-tls \
--enable-shared \ --enable-shared \
--disable-static \ --disable-static \
@ -108,7 +104,6 @@ PKG_CONFIGURE_OPTS_HOST="--target=$TARGET_NAME \
--enable-clocale=gnu \ --enable-clocale=gnu \
$GCC_OPTS \ $GCC_OPTS \
--disable-nls \ --disable-nls \
--disable-cloog-version-check \
--enable-checking=release" --enable-checking=release"
pre_configure_bootstrap() { pre_configure_bootstrap() {