Skip to content

Commit

Permalink
Revert further
Browse files Browse the repository at this point in the history
  • Loading branch information
lerno committed Jul 4, 2024
1 parent 62cd8dd commit 47dc212
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{steps.BUILD.outputs.DEPLOY_FILE}}
files: ${{steps.BUILD.outputs.DEPLOY_FILE}}
12 changes: 12 additions & 0 deletions install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

if not exist %WORKING_DIR% mkdir %WORKING_DIR%

::..............................................................................

if /i "%BUILD_PROJECT%" == "llvm" goto :llvm
if /i "%BUILD_PROJECT%" == "clang" goto :clang

echo Invalid argument: '%1'
exit -1

::..............................................................................

:llvm

:: download LLVM sources

if /i "%BUILD_MASTER%" == "true" (
Expand Down
2 changes: 1 addition & 1 deletion pdb-patch.pl
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@
}

open (my $file, ">", $fileName) || die ("Can't open $fileName for writing: $!\n");
print $file (@body);
print $file (@body);
4 changes: 2 additions & 2 deletions set-env.bat
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ goto :loop
:libcmt
set CRT=libcmt
set LLVM_CRT=MT
set CMAKE_CRT=MultiThreaded<$<CONFIG:Debug>:Debug>
set CMAKE_CRT=MultiThreaded
shift
goto :loop

:msvcrt
set CRT=msvcrt
set LLVM_CRT=MD
set CMAKE_CRT=MultiThreaded<$<CONFIG:Debug>:Debug>DLL
set CMAKE_CRT=MultiThreadedDLL
shift
goto :loop

Expand Down

0 comments on commit 47dc212

Please sign in to comment.