OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks | 292 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks |
293 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic | 293 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic |
294 # (Equivalent to -fPIC) | 294 # (Equivalent to -fPIC) |
295 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions | 295 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions |
296 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti | 296 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti |
297 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings | 297 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings |
298 # GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden | 298 # GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden |
299 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES', | 299 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES', |
300 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden | 300 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden |
301 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics | 301 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics |
302 'GCC_VERSION': 'com.apple.compilers.llvmgcc42', | |
303 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof | 302 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof |
304 'GCC_WARN_NON_VIRTUAL_DESTRUCTOR': 'YES', # -Wnon-virtual-dtor | 303 'GCC_WARN_NON_VIRTUAL_DESTRUCTOR': 'YES', # -Wnon-virtual-dtor |
305 # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min | 304 # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min |
306 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)', | 305 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)', |
307 'PREBINDING': 'NO', # No -Wl,-prebind | 306 'PREBINDING': 'NO', # No -Wl,-prebind |
308 'SYMROOT': '<(DEPTH)/xcodebuild', | 307 'SYMROOT': '<(DEPTH)/xcodebuild', |
309 'USE_HEADERMAP': 'NO', | 308 'USE_HEADERMAP': 'NO', |
310 'OTHER_CFLAGS': [ | 309 'OTHER_CFLAGS': [ |
311 '-fno-strict-aliasing', | 310 '-fno-strict-aliasing', |
312 ], | 311 ], |
(...skipping 13 matching lines...) Expand all Loading... |
326 ], | 325 ], |
327 'target_conditions': [ | 326 'target_conditions': [ |
328 ['_type!="static_library"', { | 327 ['_type!="static_library"', { |
329 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 328 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
330 }], | 329 }], |
331 ], # target_conditions | 330 ], # target_conditions |
332 }, # target_defaults | 331 }, # target_defaults |
333 }], # OS=="mac" | 332 }], # OS=="mac" |
334 ], | 333 ], |
335 } | 334 } |
OLD | NEW |