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
By default, cmake is installed in C:\Program Files\CMake, so this will fail on all default installations.
As far as I see, the culprit is in configure, line 1728: (cd $LLVM_BUILD_DIR && eval "$CFG_CMAKE" $CMAKE_ARGS)
A fix for this would be changing this line to (cd $LLVM_BUILD_DIR && eval "\"$CFG_CMAKE\"" $CMAKE_ARGS)
The text was updated successfully, but these errors were encountered:
CensoredUsername
changed the title
./configure fails on windows when cmake is installed in a folder with spaces
./configure fails on windows when cmake is installed on a file path containing spaces
Jun 26, 2016
By default, cmake is installed in C:\Program Files\CMake, so this will fail on all default installations.
As far as I see, the culprit is in configure, line 1728:
(cd $LLVM_BUILD_DIR && eval "$CFG_CMAKE" $CMAKE_ARGS)
A fix for this would be changing this line to
(cd $LLVM_BUILD_DIR && eval "\"$CFG_CMAKE\"" $CMAKE_ARGS)
The text was updated successfully, but these errors were encountered: