summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-05-07 22:23:56 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-05-07 22:23:56 +0200
commitfe33a1af44506af68a887cae8a1cab3931d59a6a (patch)
tree4c38e5da88d0b39950328b2a58e4f29d23ca689e
parent23cf69ca9a8e6fb82f98a12593f483a36dee8535 (diff)
mingw: update recipe for the new toolchain
-rw-r--r--recipes/mingw.recipe6
1 files 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'))