Skip to content

Commit

Permalink
common.gypi: bump to OSX backwards compat to 10.6
Browse files Browse the repository at this point in the history
When working on this branch under both llvm and gcc the binary was
failing in very odd ways. GDB was showing multiple returns from
functions, line numbers weren't matching, etc. However, the makefile
build worked fine.

Investigating further we found that bumping MACOSX_DEPLOYMENT_TARGET to
10.6 fixes the problem.
  • Loading branch information
Brandon Philips committed Aug 7, 2012
1 parent 270e8ef commit aa4cc47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common.gypi
Expand Up @@ -153,7 +153,7 @@
'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
'GCC_VERSION': '4.2',
'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof
'MACOSX_DEPLOYMENT_TARGET': '10.4', # -mmacosx-version-min=10.4
'MACOSX_DEPLOYMENT_TARGET': '10.6', # -mmacosx-version-min=10.6
'PREBINDING': 'NO', # No -Wl,-prebind
'USE_HEADERMAP': 'NO',
'OTHER_CFLAGS': [
Expand Down

0 comments on commit aa4cc47

Please sign in to comment.