25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
639 B

  1. {
  2. 'defines': [ 'NAPI_DISABLE_CPP_EXCEPTIONS' ],
  3. 'cflags': [ '-fno-exceptions' ],
  4. 'cflags_cc': [ '-fno-exceptions' ],
  5. 'conditions': [
  6. ["OS=='win'", {
  7. # _HAS_EXCEPTIONS is already defined and set to 0 in common.gypi
  8. #"defines": [
  9. # "_HAS_EXCEPTIONS=0"
  10. #],
  11. "msvs_settings": {
  12. "VCCLCompilerTool": {
  13. 'ExceptionHandling': 0,
  14. 'EnablePREfast': 'true',
  15. },
  16. },
  17. }],
  18. ["OS=='mac'", {
  19. 'xcode_settings': {
  20. 'CLANG_CXX_LIBRARY': 'libc++',
  21. 'MACOSX_DEPLOYMENT_TARGET': '10.7',
  22. 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO',
  23. },
  24. }],
  25. ],
  26. }