From fe33a1af44506af68a887cae8a1cab3931d59a6a Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Tue, 7 May 2013 22:23:56 +0200 Subject: mingw: update recipe for the new toolchain --- recipes/mingw.recipe | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/mingw.recipe b/recipes/mingw.recipe index 43954fc..7a81d52 100644 --- a/recipes/mingw.recipe +++ b/recipes/mingw.recipe @@ -10,7 +10,7 @@ class Recipe(recipe.Recipe): btype = BuildType.CUSTOM stype = SourceType.CUSTOM - files_libs = ['libgcc_s_sjlj'] + files_libs = ['libwinpthread'] files_satic = [] files_headers = ['include/GL'] @@ -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.6.2/libgcc.a'] + self.mingw_static_files += ['%(mingw)s/lib/gcc/%(host)s/4.7.2/libgcc.a'] # static build deps if self.config.platform == Platform.WINDOWS: # the native compiler install libraries in 'lib' and @@ -39,7 +39,7 @@ class Recipe(recipe.Recipe): else: binmingw = os.path.join(self.config.host, 'lib') # copy some dll's required at runtime - for f in ['libgcc_s_sjlj-1']: + for f in ['libwinpthread-1']: shutil.copy( os.path.join(self.config.toolchain_prefix, binmingw, f + '.dll'), os.path.join(self.config.prefix, 'bin', f + '.dll')) -- cgit v1.2.3