Skip to content

Commit 247bde9

Browse files
committedApr 1, 2024
fix: support boolean in uwp and spectre
1 parent c55599b commit 247bde9

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed
 

‎lib.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ export function findVcvarsall(version: string): string
3232
* @param {string} arch - Target architecture
3333
* @param {string} sdk - Windows SDK number to build for
3434
* @param {string} toolset - VC++ compiler toolset version
35-
* @param {'true' | 'false'} uwp - Build for Universal Windows Platform
36-
* @param {'true' | 'false'} spectre - Enable Spectre mitigations
35+
* @param {boolean | 'true' | 'false'} uwp - Build for Universal Windows Platform
36+
* @param {boolean | 'true' | 'false'} spectre - Enable Spectre mitigations
3737
* @param {string} vsversion - The Visual Studio version to use. This can be the version number (e.g. 16.0 for 2019) or the year (e.g. "2019").
3838
*/
3939
export function setupMSVCDevCmd(
4040
arch: string,
4141
sdk?: string,
4242
toolset?: string,
43-
uwp?: 'true' | 'false',
44-
spectre?: 'true' | 'false',
43+
uwp?: boolean | 'true' | 'false',
44+
spectre?: boolean | 'true' | 'false',
4545
vsversion?: string,
4646
)

‎lib.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ function filterPathValue(path) {
146146
* @param {string} arch - Target architecture
147147
* @param {string} sdk - Windows SDK number to build for
148148
* @param {string} toolset - VC++ compiler toolset version
149-
* @param {'true' | 'false'} uwp - Build for Universal Windows Platform
150-
* @param {'true' | 'false'} spectre - Enable Spectre mitigations
149+
* @param {boolean | 'true' | 'false'} uwp - Build for Universal Windows Platform
150+
* @param {boolean | 'true' | 'false'} spectre - Enable Spectre mitigations
151151
* @param {string} vsversion - The Visual Studio version to use. This can be the version number (e.g. 16.0 for 2019) or the year (e.g. "2019").
152152
*/
153153
function setupMSVCDevCmd(arch, sdk, toolset, uwp, spectre, vsversion) {
@@ -176,7 +176,8 @@ function setupMSVCDevCmd(arch, sdk, toolset, uwp, spectre, vsversion) {
176176
// Call the configuration batch file and then output *all* the environment variables.
177177

178178
var args = [arch]
179-
if (uwp == 'true') {
179+
180+
if (JSON.parse(uwp) === true) {
180181
args.push('uwp')
181182
}
182183
if (sdk) {
@@ -185,7 +186,7 @@ function setupMSVCDevCmd(arch, sdk, toolset, uwp, spectre, vsversion) {
185186
if (toolset) {
186187
args.push(`-vcvars_ver=${toolset}`)
187188
}
188-
if (spectre == 'true') {
189+
if (JSON.parse(spectre) === true) {
189190
args.push('-vcvars_spectre_libs=spectre')
190191
}
191192

0 commit comments

Comments
 (0)