Skip to content

[NativeAOT-LLVM] Update llvm to 18.1.3 and emscripten to 3.1.54 #2595

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 1, 2024
Merged
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
6 changes: 3 additions & 3 deletions eng/pipelines/runtimelab/install-emscripten.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ git clone https://github.com/emscripten-core/emsdk.git
Set-Location -Path emsdk

# Checkout a specific commit to avoid unexpected issues
git checkout 37b85e9
git checkout c18280c

./emsdk install 3.1.47
./emsdk install 3.1.54

./emsdk activate 3.1.47
./emsdk activate 3.1.54

# Set a variable for later use (used in common/build.ps1)
Write-Host "##vso[task.setvariable variable=NATIVEAOT_CI_WASM_BUILD_EMSDK_PATH]$PWD"
2 changes: 1 addition & 1 deletion eng/pipelines/runtimelab/install-llvm.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if (!(gcm cmake -ErrorAction SilentlyContinue))

if (!$NoClone)
{
$LlvmProjectTag = "llvmorg-17.0.4"
$LlvmProjectTag = "llvmorg-18.1.3"
$DepthOption = if ($CI) {"--depth","1"} else {}
git clone https://github.com/llvm/llvm-project --branch $LlvmProjectTag $DepthOption
}
Expand Down