0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-21 21:19:50 +01:00

Revert "build: only generate specified build type files"

This reverts commit 6cb940a546.

PR-URL: https://github.com/nodejs/node/pull/53580
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Chengzhong Wu 2024-06-26 08:29:47 +01:00 committed by GitHub
parent eca806b54a
commit ab5e58bf29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2277,7 +2277,7 @@ if flavor == 'win' and python.lower().endswith('.exe'):
gyp_args += ['-Dpython=' + python]
if options.use_ninja:
gyp_args += ['-f', 'ninja-' + flavor, '-G', 'config=' + config['BUILDTYPE']]
gyp_args += ['-f', 'ninja-' + flavor]
elif flavor == 'win' and sys.platform != 'msys':
gyp_args += ['-f', 'msvs', '-G', 'msvs_version=auto']
else: