We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53dc0c1 commit 8420260Copy full SHA for 8420260
.github/workflows/cmake.yml
@@ -76,6 +76,15 @@ jobs:
76
run: |
77
sudo apt-get update
78
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`
88
89
- name: Set Clang 16 as Default
90
if: matrix.os == 'ubuntu-24.04' && matrix.c_compiler == 'clang'
0 commit comments