Created
February 28, 2020 11:47
-
-
Save NickNaso/46143ef41ef359fe59a2e24e62c5e83c to your computer and use it in GitHub Desktop.
Enable RTTI support for macOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
'targets': [ | |
{ | |
'target_name': 'bindings', | |
'sources': [ 'bindings.cc' ], | |
'cflags_cc!': [ '-fno-rtti' ], | |
'conditions': [ | |
['OS=="mac"', { | |
'xcode_settings': { | |
'GCC_ENABLE_CPP_RTTI': 'YES' | |
} | |
}] | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment