We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
FIX
1 parent 0cd41dd commit a2009d4Copy full SHA for a2009d4
targets/x86_64-pc-windows-libcmt/build.bat
@@ -19,10 +19,17 @@ exit -1
19
20
mkdir llvm\build
21
cd llvm\build
22
+
23
cmake .. %LLVM_CMAKE_CONFIGURE_FLAGS%
24
cmake --build . %CMAKE_BUILD_FLAGS%
25
cmake --build . --target install %CMAKE_BUILD_FLAGS%
26
27
+for %%f in ("bin\*.exe") do (
28
+ if /i not "%%~nxf" == "llvm-config.exe" (
29
+ del "%%f"
30
+ )
31
+)
32
33
cd %THIS_DIR%
34
35
7z a -tzip %GITHUB_WORKSPACE%\%LLVM_RELEASE_FILE% %LLVM_RELEASE_NAME%
0 commit comments