update build_jsep.bat to add release build flags (#17471)

### Description
flags `--enable_wasm_api_exception_catching --disable_rtti` are used in
release build, so fix the build_jsep.bat script to make it more
consistent with CI.
This commit is contained in:
Yulong Wang 2023-10-10 17:38:35 -07:00 committed by GitHub
parent d637111e9f
commit c6f1a1ce69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ if ["%~1"]==["d"] (
)
if ["%~1"]==["r"] (
set CONFIG=Release
set CONFIG_EXTRA_FLAG=
set CONFIG_EXTRA_FLAG=--enable_wasm_api_exception_catching --disable_rtti
goto :arg2
)
echo Invalid configuration "%~1", must be "d"(Debug) or "r"(Release)