From 99c9a732f45ee36e262a53a9ec3c72b08a23c53c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Wed, 17 Nov 2010 22:15:31 +0100 Subject: [PATCH] gcc-final: add metafile support Signed-off-by: Stephan Raue --- packages/toolchain/lang/gcc-final/build | 12 +----------- packages/toolchain/lang/gcc-final/meta | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 11 deletions(-) create mode 100644 packages/toolchain/lang/gcc-final/meta diff --git a/packages/toolchain/lang/gcc-final/build b/packages/toolchain/lang/gcc-final/build index a6ed772902..861464782e 100755 --- a/packages/toolchain/lang/gcc-final/build +++ b/packages/toolchain/lang/gcc-final/build @@ -2,23 +2,13 @@ . config/options $1 -$SCRIPTS/build ccache -$SCRIPTS/build binutils -$SCRIPTS/build gmp -$SCRIPTS/build mpfr -$SCRIPTS/build mpc -$SCRIPTS/build ppl -$SCRIPTS/build cloog-ppl -$SCRIPTS/build libelf -$SCRIPTS/build eglibc $SCRIPTS/unpack gcc setup_toolchain host cd $BUILD/gcc* -mkdir -p objdir-$1 -cd objdir-$1 +mkdir -p objdir-$1 && cd objdir-$1 ../configure --host=$HOST_NAME \ --build=$HOST_NAME \ diff --git a/packages/toolchain/lang/gcc-final/meta b/packages/toolchain/lang/gcc-final/meta new file mode 100644 index 0000000000..d7804e596e --- /dev/null +++ b/packages/toolchain/lang/gcc-final/meta @@ -0,0 +1,14 @@ +PKG_NAME="gcc-final" +PKG_VERSION="" +PKG_REV="1" +PKG_ARCH="any" +PKG_LICENSE="GPL" +PKG_SITE="http://gcc.gnu.org/" +PKG_URL="" +PKG_DEPENDS="" +PKG_BUILD_DEPENDS="ccache binutils gmp mpfr mpc ppl cloog-ppl libelf eglibc" +PKG_PRIORITY="optional" +PKG_SECTION="toolchain/lang" +PKG_SHORTDESC="gcc: The GNU Compiler Collection Version 4 (aka GNU C Compiler)" +PKG_LONGDESC="This package contains the GNU Compiler Collection. It includes compilers for the languages C, C++, Objective C, Fortran 95, Java and others ... This GCC contains the Stack-Smashing Protector Patch which can be enabled with the -fstack-protector command-line option. More information about it ca be found at http://www.research.ibm.com/trl/projects/security/ssp/." +PKG_IS_ADDON="no"