From 13408b7ef06ae3d306a4a145b88ea3c407b568de Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Wed, 8 May 2013 04:20:33 +0200 Subject: toolchain: update gcc to 4.7.3 --- cerbero/bootstrap/windows.py | 2 +- recipes/mingw.recipe | 2 +- recipes/toolchain/gcc-core.recipe | 2 +- recipes/toolchain/gcc.recipe | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cerbero/bootstrap/windows.py b/cerbero/bootstrap/windows.py index 9554b68..f1518ec 100644 --- a/cerbero/bootstrap/windows.py +++ b/cerbero/bootstrap/windows.py @@ -28,7 +28,7 @@ from cerbero.utils import shell, _, fix_winpath, to_unixpath, git from cerbero.utils import messages as m # Toolchain -GCC_VERSION = '4.7.2' +GCC_VERSION = '4.7.3' MINGW_DOWNLOAD_SOURCE = 'http://www.freedesktop.org/software/gstreamer-sdk/'\ 'data/packages/2012.5/windows/toolchain' MINGW_TARBALL_TPL = "mingw-%s-gcc-%s-%s-%s.tar.xz" diff --git a/recipes/mingw.recipe b/recipes/mingw.recipe index 431a23c..81cd411 100644 --- a/recipes/mingw.recipe +++ b/recipes/mingw.recipe @@ -19,7 +19,7 @@ class Recipe(recipe.Recipe): '%(host)s/lib/libdxerr9.a', '%(host)s/lib/libmoldname.a'] if self.config.platform == Platform.WINDOWS: - self.mingw_static_files += ['%(mingw)s/lib/gcc/%(host)s/4.7.2/libgcc.a'] + self.mingw_static_files += ['%(mingw)s/lib/gcc/%(host)s/4.7.3/libgcc.a'] # static build deps if self.config.platform == Platform.WINDOWS: # the native compiler install libraries in 'lib' and diff --git a/recipes/toolchain/gcc-core.recipe b/recipes/toolchain/gcc-core.recipe index 50d8201..60e345f 100644 --- a/recipes/toolchain/gcc-core.recipe +++ b/recipes/toolchain/gcc-core.recipe @@ -3,7 +3,7 @@ from cerbero.utils import shell class Recipe(recipe.Recipe): name = 'gcc-core' - version = '4.7.2' + version = '4.7.3' licenses = [License.GPLv3] configure_options = '--disable-multilib --enable-fully-dynamic-string ' \ '--with-sysroot=$CERBERO_PREFIX ' \ diff --git a/recipes/toolchain/gcc.recipe b/recipes/toolchain/gcc.recipe index 902de4e..b1e9338 100644 --- a/recipes/toolchain/gcc.recipe +++ b/recipes/toolchain/gcc.recipe @@ -2,14 +2,14 @@ import shutil class Recipe(recipe.Recipe): name = 'gcc' - version = '4.7.2' + version = '4.7.3' licenses = [License.GPLv3] supports_non_src_build = True stype = SourceType.CUSTOM deps = ['mingw-w64', 'winpthreads'] files_bins = ['gcc', 'cpp', 'gcov', 'jcf-dump', 'c++', 'gcj', 'g++', - 'gcc-4.7.2', 'gfortran'] + 'gcc-4.7.3', 'gfortran'] files_gcc = ['%(host)s/include/c++', '%(host)s/bin/c++%(bext)s', '%(host)s/bin/g++%(bext)s', @@ -45,8 +45,8 @@ class Recipe(recipe.Recipe): '%(host)s/lib/libsupc++.la', 'lib/libiberty.a', ] - files_lib_gcc = ['lib/gcc/%(host)s/4.7.2', - 'libexec/gcc/%(host)s/4.7.2'] + files_lib_gcc = ['lib/gcc/%(host)s/4.7.3', + 'libexec/gcc/%(host)s/4.7.3'] files_lang = ['gcc', 'cpplib'] def configure(self): -- cgit v1.2.3