Skip to content

Commit

Permalink
See if include order matters
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Sep 15, 2024
1 parent 87dffc4 commit 5091363
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ def build_extensions(self):
# by FastJet and FastJet-contrib.
# c.f. https://github.com/scikit-hep/fastjet/issues/310
if sys.platform == "darwin":
os.environ["CXXFLAGS"] = (
os.environ.get("CXXFLAGS", "") + " -I/opt/homebrew/include"
os.environ["CXXFLAGS"] = "-I/opt/homebrew/include " + os.environ.get(
"CXXFLAGS", ""
)
os.environ["LDFLAGS"] = (
os.environ.get("LDFLAGS", "") + " -L/opt/homebrew/lib"
Expand Down

0 comments on commit 5091363

Please sign in to comment.