summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@async.com.br>2008-12-12 18:29:55 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-12-12 18:29:55 +0000
commit6ae11e8edbd5ca6783fb6166b2b921fac06ebdc3 (patch)
treed96179b159c2b053547e5b5e05233f1812f79d16
parent200e437d4f37123e78faab0ede4372184fb7b4ee (diff)
downloadgobject-introspection-6ae11e8edbd5ca6783fb6166b2b921fac06ebdc3.tar.gz
Pass in --tag=CC to libtool to avoid making libtool confused when CC is
2008-12-12 Johan Dahlin <jdahlin@async.com.br> * giscanner/dumper.py (DumpCompiler._link): Pass in --tag=CC to libtool to avoid making libtool confused when CC is different from gcc on some systems. svn path=/trunk/; revision=993
-rw-r--r--ChangeLog6
-rw-r--r--giscanner/dumper.py1
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b8fcee95..389c8200 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-12-12 Johan Dahlin <jdahlin@async.com.br>
+
+ * giscanner/dumper.py (DumpCompiler._link): Pass in
+ --tag=CC to libtool to avoid making libtool confused
+ when CC is different from gcc on some systems.
+
2008-12-10 Johan Bilien <jobi@via.ecp.fr>
Bug 563998 – Cache the GIBaseInfo for GTypes
diff --git a/giscanner/dumper.py b/giscanner/dumper.py
index 3ed58554..45dcc25f 100644
--- a/giscanner/dumper.py
+++ b/giscanner/dumper.py
@@ -170,6 +170,7 @@ class DumpCompiler(object):
if libtool:
args.extend(libtool)
args.append('--mode=link')
+ args.append('--tag=CC')
args.extend([self._linker_cmd, '-o', output])