[geany/geany] e66a3b: Don't use nonexistant --export-dynamic linker flag on Windows
Colomban Wendling
git-noreply at xxxxx
Sun Feb 5 18:15:20 UTC 2012
Branch: refs/heads/master
Author: Colomban Wendling <ban at herbesfolles.org>
Committer: Colomban Wendling <ban at herbesfolles.org>
Date: Sun, 05 Feb 2012 18:15:20
Commit: e66a3ba38950d0fb802a3534fd33ec7029ce27ab
https://github.com/geany/geany/commit/e66a3ba38950d0fb802a3534fd33ec7029ce27ab
Log Message:
-----------
Don't use nonexistant --export-dynamic linker flag on Windows
Modified Paths:
--------------
wscript
Modified: wscript
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -310,7 +310,7 @@ def build(bld):
source = geany_sources,
includes = ['.', 'scintilla/include/', 'tagmanager/include/'],
defines = ['G_LOG_DOMAIN="Geany"', 'GEANY_PRIVATE'],
- linkflags = ['-Wl,--export-dynamic'],
+ linkflags = [] if is_win32 else ['-Wl,--export-dynamic'],
uselib = ['GTK', 'GLIB', 'GIO', 'GTHREAD', 'WIN32', 'SUNOS_SOCKET'],
use = ['scintilla', 'tagmanager', 'mio'])
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
More information about the Commits
mailing list