Skip to content

Commit

Permalink
Set CPPFLAGS and LDFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Sep 15, 2024
1 parent 4573aec commit d691cea
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,21 @@ jobs:
env | grep HOMEBREW
LDFLAGS="-L$(brew --prefix gmp)/lib"
echo "LDFLAGS: ${LDFLAGS}"
CPPFLAGS="-I$(brew --prefix cgal)/include -I$(brew --prefix gmp)/include"
echo "CPPFLAGS: ${CPPFLAGS}"
- name: Install package
run: |
eval $(brew shellenv)
echo "PATH: $PATH"
export CXX=$(command -v clang++)
echo "CXX: $CXX"
export LDFLAGS="-L$(brew --prefix gmp)/lib"
export CPPFLAGS="-I$(brew --prefix cgal)/include -I$(brew --prefix gmp)/include"
python -m pip install '.[test]' -v
- name: List installed Python packages
Expand Down

0 comments on commit d691cea

Please sign in to comment.