Skip to content
Snippets Groups Projects
Commit d4fe29cb authored by Adrien Béraud's avatar Adrien Béraud
Browse files

nodejs: build with exceptions/rtti on macOS

Change-Id: I1e90112fef4bdfc32cae0da3005428ce066cdf18
parent de172457
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,15 @@ ...@@ -8,7 +8,15 @@
'libraries': ['-L@JAMI_LINK_DIRECTORIES@', '-ljami-core', '-lyaml-cpp', @JAMI_LINK_LIBRARIES@], 'libraries': ['-L@JAMI_LINK_DIRECTORIES@', '-ljami-core', '-lyaml-cpp', @JAMI_LINK_LIBRARIES@],
'cflags!': [ '-fno-exceptions' ], 'cflags!': [ '-fno-exceptions' ],
'cflags_cc!': [ '-fno-exceptions', '-fno-rtti', '-std=gnu++1y' ], 'cflags_cc!': [ '-fno-exceptions', '-fno-rtti', '-std=gnu++1y' ],
'cflags_cc': [ '-std=gnu++17' ], 'cflags_cc': [ '-std=gnu++17', '-frtti', '-fexceptions' ],
'xcode_settings': {
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
'GCC_ENABLE_CPP_RTTI': 'YES',
'CLANG_CXX_LIBRARY': 'libc++',
},
'msvs_settings': {
'VCCLCompilerTool': { 'ExceptionHandling': 1 },
},
} }
], ],
'variables' : { 'openssl_fips': '' } 'variables' : { 'openssl_fips': '' }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment