The OS X build now requires a little less compiler/linker magic

to maintain 10.5 runtime compatibility.


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6963 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang
2011-01-29 08:11:49 +00:00
parent 9b3920d1a9
commit fa95b7d89f
2 changed files with 4 additions and 13 deletions

View File

@ -62,6 +62,9 @@ if sys.platform == 'win32':
elif sys.platform == 'darwin':
libs += [ 'iconv' ]
ldflags += [ '-Wl,-force_load,' + env['libvideo'][0].path ]
ldflags += [ '-Xarch_i386', '-Wl,-framework,QuickTime' ]
ldflags += [ '-weak_framework', 'OpenCL' ]
exe = '#' + env['prefix'] + '/Dolphin.app/Contents/MacOS/Dolphin'
if env['HAVE_WX']: