Skip to content

Commit

Permalink
Trying to fix windows LLVM PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Aug 25, 2019
1 parent 998a25e commit 410c113
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .azure/install-llvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ steps:
else
curl -OL https://github.com/wasmerio/windows-llvm-build/releases/download/v8.0.0/llvm-8.0.0-install.zip
7z x llvm-8.0.0-install.zip
LLVM_PATH=`pwd`/llvm-8.0.0-install/
LLVM_PATH=`pwd`/llvm-8.0.0-install
LLVM_PATH_WIN=`echo %cd%`\\llvm-8.0.0-install
echo "##vso[task.prependpath]$LLVM_PATH/bin"
echo "##vso[task.setvariable variable=LLVM_SYS_80_PREFIX;]$LLVM_PATH"
echo "##vso[task.setvariable variable=LLVM_SYS_80_PREFIX;]$LLVM_PATH_WIN"
# chocolatey install cmake --installargs 'ADD_CMAKE_TO_PATH=System'
fi
displayName: "Install LLVM (Windows)"
Expand Down

0 comments on commit 410c113

Please sign in to comment.