projects
/
platform
/
upstream
/
gobject-introspection.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2a7084
)
Windows port: Export all symbols on Windows.
author
Dieter Verfaillie
<dieterv@optionexplicit.be>
Mon, 5 Sep 2011 19:34:57 +0000
(21:34 +0200)
committer
Dieter Verfaillie
<dieterv@optionexplicit.be>
Wed, 7 Sep 2011 20:01:16 +0000
(22:01 +0200)
https://bugzilla.gnome.org/show_bug.cgi?id=620566
giscanner/dumper.py
patch
|
blob
|
history
diff --git
a/giscanner/dumper.py
b/giscanner/dumper.py
index 3f79bfa628ff5f315b32b7e2ddd972c39c9724f6..a6347d8147d31a3187561681a3a1bdb4178fabbd 100644
(file)
--- a/
giscanner/dumper.py
+++ b/
giscanner/dumper.py
@@
-225,7
+225,10
@@
class DumpCompiler(object):
args.extend(self._linker_cmd.split())
args.extend(['-o', output])
if libtool:
- args.append('-export-dynamic')
+ if os.name == 'nt':
+ args.append('-export-all-symbols')
+ else:
+ args.append('-export-dynamic')
cflags = os.environ.get('CFLAGS')
if (cflags):