From 353b8d1242b3556c41d915306813a1ad5bc46e97 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Mon, 8 Jan 2024 17:27:24 +0200 Subject: [PATCH] Update windows.inc --- lib/tbb_2020.3/build/windows.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/tbb_2020.3/build/windows.inc b/lib/tbb_2020.3/build/windows.inc index 8c8ca23c1b5..0bb3e11fd88 100644 --- a/lib/tbb_2020.3/build/windows.inc +++ b/lib/tbb_2020.3/build/windows.inc @@ -22,15 +22,15 @@ endif # A convenience wrapper for calls to detect.js. # $(1) is the full command line for the script, e.g. /minversion icl 12 -detect_js = $(shell cmd //C "cscript //NoLogo //E:jscript $(tbb_root)/build/detect.js $(1)") +detect_js = $(shell cmd //C "cscript //nologo //E:jscript $(tbb_root)/build/detect.js $(1)") # TODO give an error if archs doesn't match ifndef arch - export arch:=$(call detect_js, /arch $(compiler)) + export arch:=$(call detect_js, //arch $(compiler)) endif ifndef runtime - export runtime:=$(call detect_js, /runtime $(compiler)) + export runtime:=$(call detect_js, //runtime $(compiler)) endif native_compiler := cl