mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
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:
@ -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']:
|
||||
|
Reference in New Issue
Block a user