From e35b771d9cd52b2da35b10cba455c22bac0d138e Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Thu, 9 May 2013 00:24:11 +0200 Subject: toolchain: add coogl support and fine tune configuration --- recipes/toolchain/gcc-core.recipe | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/recipes/toolchain/gcc-core.recipe b/recipes/toolchain/gcc-core.recipe index 60e345f..a3cf8a9 100644 --- a/recipes/toolchain/gcc-core.recipe +++ b/recipes/toolchain/gcc-core.recipe @@ -5,18 +5,28 @@ class Recipe(recipe.Recipe): name = 'gcc-core' version = '4.7.3' licenses = [License.GPLv3] - configure_options = '--disable-multilib --enable-fully-dynamic-string ' \ + configure_options = '--disable-multilib ' \ '--with-sysroot=$CERBERO_PREFIX ' \ + '--enable-fully-dynamic-string ' \ + '--enable-libstdcxx-time ' \ '--enable-threads=posix ' \ '--enable-languages=c,c++ ' \ '--enable-sjlj-exceptions ' \ - '--without-dwarf2 ' + '--without-dwarf2 ' \ + '--enable-libgomp ' \ + '--disable-nls ' \ + '--disable-werror ' \ + '--enable-checking=release ' \ + '--enable-libgomp ' \ + '--enable-cloog-backend=isl ' \ + '--disable-cloog-version-check ' \ + make = 'make all-gcc' make_install = 'make install-gcc' use_system_libs = True supports_non_src_build = True add_host_build_target = False - deps = ['mingw-w64-headers', 'gmp', 'mpfr', 'mpc'] + deps = ['mingw-w64-headers', 'gmp', 'mpfr', 'mpc', 'cloog'] new_env = {'CPP': None} def prepare(self): -- cgit v1.2.3