Commit 4e18119b by Dane Springmeyer

ony use the static linking helper flag on darwin

parent 2793ca0e
...@@ -53,8 +53,8 @@ def configure(conf): ...@@ -53,8 +53,8 @@ def configure(conf):
if os.environ.has_key('LINKFLAGS'): if os.environ.has_key('LINKFLAGS'):
linkflags.extend(os.environ['LINKFLAGS'].split(' ')) linkflags.extend(os.environ['LINKFLAGS'].split(' '))
if Options.options.internal_sqlite: if Options.options.internal_sqlite and Options.platform == 'darwin':
linkflags.append('-Wl,-search_paths_first') linkflags.append('-Wl,-search_paths_first')
conf.env.append_value("LINKFLAGS", linkflags) conf.env.append_value("LINKFLAGS", linkflags)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment