Skip to content

Commit beb1892

Browse files
segevfinerjasnell
authored andcommitted
build: add the option to generate compile_commands.json in vcbuild.bat
Refs: nodejs/gyp-next#238 PR-URL: #52279 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Stefan Stojanovic <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 6a52e81 commit beb1892

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

configure.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -2310,8 +2310,9 @@ def make_bin_override():
23102310

23112311
if options.compile_commands_json:
23122312
gyp_args += ['-f', 'compile_commands_json']
2313-
os.path.islink('./compile_commands.json') and os.unlink('./compile_commands.json')
2314-
os.symlink('./out/' + config['BUILDTYPE'] + '/compile_commands.json', './compile_commands.json')
2313+
if sys.platform != 'win32':
2314+
os.path.lexists('./compile_commands.json') and os.unlink('./compile_commands.json')
2315+
os.symlink('./out/' + config['BUILDTYPE'] + '/compile_commands.json', './compile_commands.json')
23152316

23162317
# pass the leftover non-whitespace positional arguments to GYP
23172318
gyp_args += [arg for arg in args if not str.isspace(arg)]
@@ -2321,4 +2322,7 @@ def make_bin_override():
23212322

23222323
print_verbose("running: \n " + " ".join(['python', 'tools/gyp_node.py'] + gyp_args))
23232324
run_gyp(gyp_args)
2325+
if options.compile_commands_json and sys.platform == 'win32':
2326+
os.path.isfile('./compile_commands.json') and os.unlink('./compile_commands.json')
2327+
shutil.copy2('./out/' + config['BUILDTYPE'] + '/compile_commands.json', './compile_commands.json')
23242328
info('configure completed successfully')

vcbuild.bat

+3
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ set openssl_no_asm=
7070
set no_shared_roheap=
7171
set doc=
7272
set extra_msbuild_args=
73+
set compile_commands=
7374
set exit_code=0
7475

7576
:next-arg
@@ -147,6 +148,7 @@ if /i "%1"=="openssl-no-asm" set openssl_no_asm=1&goto arg-ok
147148
if /i "%1"=="no-shared-roheap" set no_shared_roheap=1&goto arg-ok
148149
if /i "%1"=="doc" set doc=1&goto arg-ok
149150
if /i "%1"=="binlog" set extra_msbuild_args=/binaryLogger:out\%config%\node.binlog&goto arg-ok
151+
if /i "%1"=="compile-commands" set compile_commands=1&goto arg-ok
150152

151153
echo Error: invalid command line option `%1`.
152154
exit /b 1
@@ -205,6 +207,7 @@ if defined debug_nghttp2 set configure_flags=%configure_flags% --debug-nghttp
205207
if defined openssl_no_asm set configure_flags=%configure_flags% --openssl-no-asm
206208
if defined no_shared_roheap set configure_flags=%configure_flags% --disable-shared-readonly-heap
207209
if defined DEBUG_HELPER set configure_flags=%configure_flags% --verbose
210+
if defined compile_commands set configure_flags=%configure_flags% -C
208211

209212
if "%target_arch%"=="x86" (
210213
echo "32-bit Windows builds are not supported anymore."

0 commit comments

Comments
 (0)