diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-05-09 00:24:11 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-05-10 18:29:08 +0200 |
commit | e35b771d9cd52b2da35b10cba455c22bac0d138e (patch) | |
tree | 6154e5163a23c7633bfd6b63a24a436686940901 /recipes/toolchain | |
parent | fef08bb8738f0690a199218a282af7ad8cd1f0da (diff) |
toolchain: add coogl support and fine tune configuration
Diffstat (limited to 'recipes/toolchain')
-rw-r--r-- | recipes/toolchain/gcc-core.recipe | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/recipes/toolchain/gcc-core.recipe b/recipes/toolchain/gcc-core.recipe index 60e345f2..a3cf8a9e 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): |