Skip to content

Commit

Permalink
Fix building on Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Feb 11, 2025
1 parent f854c3f commit 35dccf3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@
"HAVE_CDS",
"_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION",
],
"cflags!": [ "-fno-rtti", "-fno-exceptions" ],
"cflags_cc!": [ "-fno-rtti", "-fno-exceptions" ],
"cflags!": [ "-fno-rtti", "-fno-exceptions", "-include stdint.h" ],
"cflags_cc": [ "-include", "stdint.h" ],
"cflags_cc!": [ "-fno-rtti", "-fno-exceptions", "-include", "stdint.h" ],
"xcode_settings": {
"GCC_ENABLE_CPP_RTTI": "YES",
"GCC_ENABLE_CPP_EXCEPTIONS": "YES",
Expand Down

0 comments on commit 35dccf3

Please sign in to comment.