Skip to content

Commit

Permalink
build: compile with C++20 support
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed May 5, 2024
1 parent 6135ae3 commit 0522d41
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
16 changes: 16 additions & 0 deletions common_node.gypi
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
'target_defaults': {
'conditions': [
# Override common.gypi config to use C++20 for Node.js core only.
['OS in "linux freebsd openbsd solaris android aix os400 cloudabi"', {
'cflags_cc!': ['-std=gnu++17'],
'cflags_cc': ['-std=gnu++20'],
}],
['OS=="mac" and clang==1', {
'xcode_settings': {
'CLANG_CXX_LANGUAGE_STANDARD': 'gnu++20', # -std=gnu++20
},
}],
],
},
}
4 changes: 4 additions & 0 deletions tools/gyp_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,15 @@ def run_gyp(args):
a_path = node_root if sys.platform == 'win32' else os.path.abspath(node_root)
args.append(os.path.join(a_path, 'node.gyp'))
common_fn = os.path.join(a_path, 'common.gypi')
common_node_fn = os.path.join(a_path, 'common_node.gypi')
options_fn = os.path.join(a_path, 'config.gypi')

if os.path.exists(common_fn):
args.extend(['-I', common_fn])

if os.path.exists(common_node_fn):
args.extend(['-I', common_node_fn])

if os.path.exists(options_fn):
args.extend(['-I', options_fn])

Expand Down

0 comments on commit 0522d41

Please sign in to comment.