Skip to content

Commit

Permalink
Make: Bump to Clang-16 (ashvardanian#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashbob999 authored Apr 26, 2024
1 parent dcaa06c commit 02a18dc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@ jobs:
env:
CC: clang-16
CXX: clang++-16
AR: llvm-ar-16
NM: llvm-nm-16
RANLIB: llvm-ranlib-16
AR: llvm-ar
NM: llvm-nm
RANLIB: llvm-ranlib

strategy:
fail-fast: false
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ jobs:
runs-on: ubuntu-22.04
needs: versioning
env:
CC: clang
CXX: clang++
CC: clang-16
CXX: clang++-16
AR: llvm-ar
NM: llvm-nm
RANLIB: llvm-ranlib
Expand Down Expand Up @@ -191,7 +191,10 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y clang lld make crossbuild-essential-arm64 crossbuild-essential-armhf
sudo apt-get install -y make build-essential crossbuild-essential-arm64 crossbuild-essential-armhf libjemalloc-dev
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 16
- name: Build C/C++
run: |
Expand Down

0 comments on commit 02a18dc

Please sign in to comment.