Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Windows port: ensure export-all-symbols is correctly passed on to the…
Browse files Browse the repository at this point in the history
… linker

Fixes "/mingw/mingw32/ld.exe: warning: cannot find entry symbol xport-all-symbols; defaulting to 00401000".
  • Loading branch information
dieterv committed Aug 5, 2012
1 parent b41ba14 commit a82d4db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion giscanner/dumper.py
Expand Up @@ -225,7 +225,7 @@ def _link(self, output, *sources):
args.extend(['-o', output])
if libtool:
if os.name == 'nt':
args.append('-export-all-symbols')
args.append('-Wl,--export-all-symbols')
else:
args.append('-export-dynamic')

Expand Down

0 comments on commit a82d4db

Please sign in to comment.