Skip to content

Commit 8420260

Browse files
committed
setup glibc version
1 parent 53dc0c1 commit 8420260

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/cmake.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,15 @@ jobs:
7676
run: |
7777
sudo apt-get update
7878
sudo apt-get install -y clang libc++-dev libc++abi-dev
79+
export glibc_install="$(pwd)/glibc/build/install"
80+
git clone git://sourceware.org/git/glibc.git
81+
cd glibc
82+
git checkout glibc-2.28
83+
mkdir build
84+
cd build
85+
../configure --prefix "$glibc_install"
86+
make -j `nproc`
87+
make install -j `nproc`
7988
8089
- name: Set Clang 16 as Default
8190
if: matrix.os == 'ubuntu-24.04' && matrix.c_compiler == 'clang'

0 commit comments

Comments
 (0)