Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit ae18594

Browse files
committed
Update LLVM to v12
1 parent 284f4cb commit ae18594

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/ci/dotnet-fuzzing-tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ mkdir -p $ARTIFACTS/LibFuzzerDotnetLoader
2020
mkdir -p $ARTIFACTS/sharpfuzz
2121

2222
# Install `libfuzzer-dotnet` pre-reqs.
23-
sudo apt-get install -y llvm-14 llvm-14-dev clang-14
23+
sudo apt-get install -y llvm-12 llvm-12-dev clang-12
2424

2525
# Note that dotnet pre-reqs are presumed to be installed
2626
# by the ci.yml setup (`setup-dotnet` action).

src/runtime-tools/linux/setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,14 @@ if type apt > /dev/null 2> /dev/null; then
124124
done
125125

126126
if ! [ -f ${LLVM_SYMBOLIZER_PATH} ]; then
127-
until sudo apt install -y llvm-14; do
127+
until sudo apt install -y llvm-12; do
128128
echo "apt failed, sleeping 10s then retrying"
129129
sleep 10
130130
done
131131

132132
# If specifying symbolizer, exe name must be a "known symbolizer".
133133
# Using `llvm-symbolizer` works for clang 8 .. 10.
134-
sudo ln -f -s $(which llvm-symbolizer-14) $LLVM_SYMBOLIZER_PATH
134+
sudo ln -f -s $(which llvm-symbolizer-12) $LLVM_SYMBOLIZER_PATH
135135
fi
136136

137137
# Install dotnet

src/runtime-tools/win64/onefuzz.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function Install-LLVM {
126126
log "installing llvm"
127127
$ProgressPreference = 'SilentlyContinue'
128128
$exe_path = "llvm-setup.exe"
129-
Invoke-WebRequest -uri https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/LLVM-14.0.6-win64.exe -OutFile $exe_path
129+
Invoke-WebRequest -uri https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.1/LLVM-12.0.1-win64.exe -OutFile $exe_path
130130
cmd /c start /wait $exe_path /S
131131
$env:Path += ";$env:ProgramFiles\LLVM\bin"
132132
log "installing llvm: done"

0 commit comments

Comments
 (0)