[build] add libcxx flags for clang workflows

This commit is contained in:
Alexander Hampel 2023-08-15 13:54:10 -04:00
parent c0afc3c44b
commit c08a0923f4
1 changed files with 5 additions and 0 deletions

View File

@ -67,6 +67,11 @@ jobs:
pip3 install mako numpy scipy mpi4py
pip3 install -r requirements.txt
- name: add clang cxxflags
if: ${{ contains(matrix.cxx, 'clang') }}
run:
echo "CXXFLAGS=-stdlib=libc++" >> $GITHUB_ENV
- name: Build & Install TRIQS
env:
CC: ${{ matrix.cc }}