We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
install-tbb.bat
After building on windows, install-tbb.bat fails with an error:
ERROR: Invalid syntax. Default option is not allowed more than '2' time(s).
I think that this is due to spaces in PATH entries.
PATH
Adding quotes around the argument to PATH fixed the problem for me.
Replaced this: setx Path %~dp0stan\lib\stan_math\lib\tbb;%OLD_SYSTEM_PATH%
setx Path %~dp0stan\lib\stan_math\lib\tbb;%OLD_SYSTEM_PATH%
with this: setx Path "%~dp0stan\lib\stan_math\lib\tbb;%OLD_SYSTEM_PATH%"
setx Path "%~dp0stan\lib\stan_math\lib\tbb;%OLD_SYSTEM_PATH%"
v2.33.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary:
After building on windows,
install-tbb.bat
fails with an error:I think that this is due to spaces in
PATH
entries.Additional Information:
Adding quotes around the argument to
PATH
fixed the problem for me.Replaced this:
setx Path %~dp0stan\lib\stan_math\lib\tbb;%OLD_SYSTEM_PATH%
with this:
setx Path "%~dp0stan\lib\stan_math\lib\tbb;%OLD_SYSTEM_PATH%"
Current Version:
v2.33.0
The text was updated successfully, but these errors were encountered: