Gah, need _both_ -search_paths_first and -Z.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6318 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang 2010-10-28 17:10:49 +00:00
parent a1312da859
commit 6edb5f4847
1 changed files with 2 additions and 1 deletions

View File

@ -133,7 +133,8 @@ if sys.platform == 'darwin':
env['LIBPATH'] += ['/usr/lib']
env['LIBS'] = ['iconv', 'SDL']
env['LINKFLAGS'] += ccld
env['LINKFLAGS'] += ['-Wl,-Z', '-F/System/Library/Frameworks']
env['LINKFLAGS'] += ['-Wl,-search_paths_first', '-Wl,-Z']
env['LINKFLAGS'] += ['-F/System/Library/Frameworks']
if platform.mac_ver()[0] < '10.6.0':
env['HAVE_OPENCL'] = 0