Merge pull request #123 from marcelofg55/osx_scons
On OS X append .osx.64 to the result_name var on SConstructpull/130/head
commit
68ba815bc5
|
@ -70,6 +70,10 @@ elif target_platform == 'osx':
|
|||
if ARGUMENTS.get('use_llvm', 'no') == 'yes':
|
||||
env['CXX'] = 'clang++'
|
||||
|
||||
# Only 64-bits is supported for OS X
|
||||
target_arch = '64'
|
||||
result_name += '.osx.' + target_arch
|
||||
|
||||
env.Append(CCFLAGS = [ '-g','-O3', '-std=c++14', '-arch', 'x86_64' ])
|
||||
env.Append(LINKFLAGS = [ '-arch', 'x86_64', '-framework', 'Cocoa', '-Wl,-undefined,dynamic_lookup' ])
|
||||
|
||||
|
|
Loading…
Reference in New Issue