summaryrefslogtreecommitdiff
path: root/giscanner/dumper.py
diff options
context:
space:
mode:
authorNicola Fontana <ntd@entidi.it>2016-02-12 11:04:11 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2018-01-25 22:10:25 +0000
commit15a28c945f192863c6b0a9818fa3a0713e3d4076 (patch)
treec2a08f2293ba13620b16ce3ee016c3b15dce7fa7 /giscanner/dumper.py
parentb8da3c080103ba06da8ebd81d6cffbeda8b1bd13 (diff)
downloadgobject-introspection-15a28c945f192863c6b0a9818fa3a0713e3d4076.tar.gz
Allow overriding of the host os name
Added the GI_HOST_OS environment variable to eventually specify the host OS explicitely. It fall backs to os.name to retain backward compatibility. https://bugzilla.gnome.org/show_bug.cgi?id=761985
Diffstat (limited to 'giscanner/dumper.py')
-rw-r--r--giscanner/dumper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py
index 7f77bd24..3c7220bc 100644
--- a/giscanner/dumper.py
+++ b/giscanner/dumper.py
@@ -227,7 +227,7 @@ class DumpCompiler(object):
else:
args.extend(['-o', output])
if libtool:
- if os.name == 'nt':
+ if utils.host_os() == 'nt':
args.append('-Wl,--export-all-symbols')
else:
args.append('-export-dynamic')