Open mid-kid opened 5 months ago
The build_clang.sh script isn't working when CMAKE_GENERATOR=Ninja is exported in the environment. You need to either use cmake --build <dir> instead of the $MAKE command, or pass the -G'Unix Makefiles' flag to the cmake command.
build_clang.sh
CMAKE_GENERATOR=Ninja
cmake --build <dir>
$MAKE
-G'Unix Makefiles'
cmake
The
build_clang.sh
script isn't working whenCMAKE_GENERATOR=Ninja
is exported in the environment. You need to either usecmake --build <dir>
instead of the$MAKE
command, or pass the-G'Unix Makefiles'
flag to thecmake
command.