Skip to content

Commit 7037734

Browse files
committed
Try using stdlib=libc++
1 parent 219f664 commit 7037734

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ jobs:
9090
CIBW_SKIP: cp36* cp37* cp38* pp*
9191
CIBW_BEFORE_ALL: brew install llvm libomp fftw eigen
9292
CIBW_ENVIRONMENT: >-
93-
CC=/opt/homebrew/opt/llvm/bin/clang
94-
CXX=/opt/homebrew/opt/llvm/bin/clang++
93+
CC="/opt/homebrew/opt/llvm/bin/clang -stdlib=libc++"
94+
CCX="/opt/homebrew/opt/llvm/bin/clang++ -stdlib=libc++"
9595
LDFLAGS="-L/opt/homebrew/opt/llvm/lib -Wl,-rpath,/opt/homebrew/opt/llvm/lib"
9696
CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
9797
PATH="/opt/homebrew/opt/llvm/bin:$PATH"

galsim/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
# this list of conditions, and the disclaimer given in the documentation
1616
# and/or other materials provided with the distribution.
1717
#
18-
__version__ = '2.8.2-a2'
18+
__version__ = '2.8.2-a3'
1919
__version_info__ = tuple(map(lambda x:int(x.split('-')[0]), __version__.split('.')))[:3]

0 commit comments

Comments
 (0)