From 6ae11e8edbd5ca6783fb6166b2b921fac06ebdc3 Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Fri, 12 Dec 2008 18:29:55 +0000 Subject: Pass in --tag=CC to libtool to avoid making libtool confused when CC is 2008-12-12 Johan Dahlin * 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 --- ChangeLog | 6 ++++++ giscanner/dumper.py | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index b8fcee95..389c8200 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-12-12 Johan Dahlin + + * 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 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]) -- cgit v1.2.1