From 5091363409056471866d48afeab19e6523e76277 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Sun, 15 Sep 2024 13:56:53 -0500 Subject: [PATCH] See if include order matters --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0e129029..3e0b2b15 100644 --- a/setup.py +++ b/setup.py @@ -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"