Reviewers: Yang,
Message:
PTAQL.
https://chromiumcodereview.appspot.com/10693065/diff/1/build/standalone.gypi
File build/standalone.gypi (right):
https://chromiumcodereview.appspot.com/10693065/diff/1/build/standalone.gypi#newcode36
build/standalone.gypi:36: 'mac_deployment_target%': '10.5',
The bump to 10.5 is intentional. We follow Chromium here.
Description:
Make MACOSX_DEPLOYMENT_TARGET configurable.
BUG=v8:2151
Please review this at https://chromiumcodereview.appspot.com/10693065/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M build/standalone.gypi
Index: build/standalone.gypi
diff --git a/build/standalone.gypi b/build/standalone.gypi
index
ebdf55723030ee8fb1af1f19fa8460bc94235fda..72883ae4f83016384f6eb3dee57111e504dcd4d5
100644
--- a/build/standalone.gypi
+++ b/build/standalone.gypi
@@ -33,6 +33,7 @@
'component%': 'static_library',
'visibility%': 'hidden',
'msvs_multi_core_compile%': '1',
+ 'mac_deployment_target%': '10.5',
'variables': {
'variables': {
'variables': {
@@ -191,7 +192,8 @@
'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', # -Werror
'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 maps to -mmacosx-version-min
+ 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
'PREBINDING': 'NO', # No -Wl,-prebind
'SYMROOT': '<(DEPTH)/xcodebuild',
'USE_HEADERMAP': 'NO',
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev