Skip to content

Commit a19af5e

Browse files
addaleaxnodejs-github-bot
authored andcommitted
build: use C++11 ABI with libstdc++
This macro needs to match between Node.js and addons that use C++ standard library types whose ABI differs (e.g. `std::string`). Therefore, a value for this should be specified in `common.gypi`. (Currently, the 32-bit ARM builds use this ABI, and other platforms don’t. It might also be possible to set this value to `0` instead, it’s only important that *a* value is specified.) Refs: https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_dual_abi.html PR-URL: #36634 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
1 parent d32a9fe commit a19af5e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

common.gypi

+1
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@
245245
'defines': [
246246
'V8_DEPRECATION_WARNINGS',
247247
'V8_IMMINENT_DEPRECATION_WARNINGS',
248+
'_GLIBCXX_USE_CXX11_ABI=1',
248249
],
249250

250251
# Forcibly disable -Werror. We support a wide range of compilers, it's

0 commit comments

Comments
 (0)