Skip to content

Commit 3ede4d9

Browse files
committed
Try to use g++ on Macos
1 parent 64d85cb commit 3ede4d9

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ jobs:
2121
shell: bash
2222
run: |
2323
if [[ ${{ matrix.os }} = "macos-latest" ]]; then
24-
brew install llvm@19
25-
export CXX=$(brew --prefix llvm@19)/bin/clang++
24+
export CXX=g++
2625
fi
2726
python -m pip install --upgrade pip
2827
python -m pip install .[test]

CMakeLists.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@ include(cmake/CPM.cmake)
1616
set( CCCL_THRUST_DEVICE_SYSTEM "CPP")
1717
CPMAddPackage(
1818
NAME feltor
19-
#GITHUB_REPOSITORY "feltor-dev/feltor"
20-
#VERSION 8.2
21-
GITHUB_REPOSITORY "mwiesenberger/feltor"
22-
GIT_TAG clang-test
19+
GITHUB_REPOSITORY "feltor-dev/feltor"
20+
VERSION 8.2
2321
SYSTEM ON
2422
EXCLUDE_FROM_ALL ON
2523
OPTIONS "FELTOR_DG_WITH_MATRIX OFF" "FELTOR_FILE_WITH_NETCDF OFF"

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ skip = "*-musllinux*" # Skip musllinux (conflicts with libcudacxx)
4747

4848
[tool.bibuildwheel.macos]
4949
before-build= [
50-
"brew install llvm@19",
51-
"export CXX=$(brew --prefix llvm@19)/bin/clang++"
50+
"export CXX=g++"
5251
]
5352

5453
[tool.cibuildwheel.pyodide]

0 commit comments

Comments
 (0)