You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe there are some issues with the way this template attempts to automatically run vcvarsall.bat when compiling with MSVC on Windows.
First Issue: Trailing slashes in environment variables
The first issue is related to how CMake handles lists. After executing vcvarsall.bat, your cmake script copies the environment to string, makes some replacements, and then copies the environment to the current cmake environment. This works fine until an environment value has a trailing backslash at the end of its value (e.g JAVA_HOME).
When this happens, you end up with a list in CMake that looks something like this:
Because of the trailing backslash, when cmake iterates through the list, it tries to set the JAVA_HOME environment to C:\Path\To\Java;LIB=list;of;lib;paths. The only way I've found to work around this behavior is to also replace all slashes in the environment output with slash and restore them before setting the environment variable.
Second Issue: The VS Environment is lost after the configure step
Running cmake to configure the project works, since the script sets up the VS environment automatically (assuming you don't lose the LIB environment variable due to the previous issue like I did). The problem is the environment is lost again after the configure step, so trying to build will fail indicating it can't find the necessary compiler/link executable. This occurred while using the Ninja generator. I don't know if this occurs with the MSVC generator.
The only way to fix this is to manually run vcvarsall.bat again before executing the build step. I haven't figured out a way to avoid this problem.
At least that was my experience.
The text was updated successfully, but these errors were encountered:
I believe there are some issues with the way this template attempts to automatically run vcvarsall.bat when compiling with MSVC on Windows.
First Issue: Trailing slashes in environment variables
The first issue is related to how CMake handles lists. After executing vcvarsall.bat, your cmake script copies the environment to string, makes some replacements, and then copies the environment to the current cmake environment. This works fine until an environment value has a trailing backslash at the end of its value (e.g JAVA_HOME).
When this happens, you end up with a list in CMake that looks something like this:
Because of the trailing backslash, when cmake iterates through the list, it tries to set the JAVA_HOME environment to
C:\Path\To\Java;LIB=list;of;lib;paths
. The only way I've found to work around this behavior is to also replace all slashes in the environment output with slash and restore them before setting the environment variable.Second Issue: The VS Environment is lost after the configure step
Running cmake to configure the project works, since the script sets up the VS environment automatically (assuming you don't lose the LIB environment variable due to the previous issue like I did). The problem is the environment is lost again after the configure step, so trying to build will fail indicating it can't find the necessary compiler/link executable. This occurred while using the Ninja generator. I don't know if this occurs with the MSVC generator.
The only way to fix this is to manually run vcvarsall.bat again before executing the build step. I haven't figured out a way to avoid this problem.
At least that was my experience.
The text was updated successfully, but these errors were encountered: