Skip to content

Instantly share code, notes, and snippets.

@NickNaso
Created February 28, 2020 11:47
Show Gist options
  • Save NickNaso/46143ef41ef359fe59a2e24e62c5e83c to your computer and use it in GitHub Desktop.
Save NickNaso/46143ef41ef359fe59a2e24e62c5e83c to your computer and use it in GitHub Desktop.
Enable RTTI support for macOS
{
'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