We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c65bb40 commit 3262bfdCopy full SHA for 3262bfd
src/nb_internals.cpp
@@ -56,8 +56,11 @@
56
#endif
57
58
/// On Linux/OSX, changes in __GXX_ABI_VERSION__ indicate ABI incompatibility.
59
+/// Also keep potentially ABI-incompatible visual studio builds apart.
60
#if defined(__GXX_ABI_VERSION)
61
# define NB_BUILD_ABI "_cxxabi" NB_TOSTRING(__GXX_ABI_VERSION)
62
+#elif defined(_MSC_VER)
63
+# define NB_BUILD_ABI "_mscver" NB_TOSTRING(_MSC_VER)
64
#else
65
# define NB_BUILD_ABI ""
66
0 commit comments