| 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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks | 314 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks |
| 315 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic | 315 'GCC_DYNAMIC_NO_PIC': 'NO', # No -mdynamic-no-pic |
| 316 # (Equivalent to -fPIC) | 316 # (Equivalent to -fPIC) |
| 317 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions | 317 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO', # -fno-exceptions |
| 318 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti | 318 'GCC_ENABLE_CPP_RTTI': 'NO', # -fno-rtti |
| 319 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings | 319 'GCC_ENABLE_PASCAL_STRINGS': 'NO', # No -mpascal-strings |
| 320 # GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden | 320 # GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden |
| 321 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES', | 321 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES', |
| 322 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden | 322 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden |
| 323 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics | 323 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics |
| 324 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof | |
| 325 'GCC_WARN_NON_VIRTUAL_DESTRUCTOR': 'YES', # -Wnon-virtual-dtor | 324 'GCC_WARN_NON_VIRTUAL_DESTRUCTOR': 'YES', # -Wnon-virtual-dtor |
| 326 # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min | 325 # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min |
| 327 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)', | 326 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)', |
| 328 'PREBINDING': 'NO', # No -Wl,-prebind | 327 'PREBINDING': 'NO', # No -Wl,-prebind |
| 329 'SYMROOT': '<(DEPTH)/xcodebuild', | 328 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 330 'USE_HEADERMAP': 'NO', | 329 'USE_HEADERMAP': 'NO', |
| 331 'OTHER_CFLAGS': [ | 330 'OTHER_CFLAGS': [ |
| 332 '-fno-strict-aliasing', | 331 '-fno-strict-aliasing', |
| 333 ], | 332 ], |
| 334 'WARNING_CFLAGS': [ | 333 'WARNING_CFLAGS': [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 353 ], | 352 ], |
| 354 'target_conditions': [ | 353 'target_conditions': [ |
| 355 ['_type!="static_library"', { | 354 ['_type!="static_library"', { |
| 356 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 355 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
| 357 }], | 356 }], |
| 358 ], # target_conditions | 357 ], # target_conditions |
| 359 }, # target_defaults | 358 }, # target_defaults |
| 360 }], # OS=="mac" | 359 }], # OS=="mac" |
| 361 ], | 360 ], |
| 362 } | 361 } |
| OLD | NEW |