Closed GoogleCodeExporter closed 9 years ago
Thanks for your patch, please verify the patch with SVN trunk code after r559
Original comment by flier...@gmail.com
on 25 Nov 2013 at 7:28
I just tested this on a fresh install 10.9 system and it works great. Thanks!
I am a bit concerned that you added the following for any Mac OS system:
extra_compile_args += ["-Wdeprecated-writable-strings", "-stdlib=libc++"]
It seems as if -stdlib=libc++ should only be added if the system is on 10.9 or
above. Something like the following should work:
import platform
if int(platform.mac_ver()[0].split('.')[1]) > 8:
extra_compile_args += ["-stdlib=libc++"]
Original comment by artlo...@gmail.com
on 1 Dec 2013 at 3:07
Original issue reported on code.google.com by
artlo...@gmail.com
on 21 Nov 2013 at 6:27