Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion prepare_3rdParty.bat
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ IF EXIST ".\3rdParty\llvm\x64\%BUILD%\bin" (
) ELSE (
cd %p%
echo "Downloading LLVM"
git submodule update --init --recursive
git submodule update --init --recursive --progress
rem copy /Y .\docs\fix\AddCompilerRT.cmake .\3rdParty\llvm-project\compiler-rt\cmake\Modules\
echo "Configuring LLVM (%BUILD%)"
cd %p%
Expand Down
2 changes: 1 addition & 1 deletion prepare_3rdParty_debug.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
echo "Downloading LLVM"
git submodule update --init --recursive
git submodule update --init --recursive --progress
echo "Configuring LLVM (Debug)"
./scripts/config_llvm_debug.sh
echo "Building LLVM (Debug)"
Expand Down
2 changes: 1 addition & 1 deletion prepare_3rdParty_release.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
echo "Downloading LLVM"
git submodule update --init --recursive
git submodule update --init --recursive --progress
echo "Configuring LLVM (Release)"
./scripts/config_llvm_release.sh
echo "Building LLVM (Release)"
Expand Down
Loading