We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93cb991 commit 04e8f25Copy full SHA for 04e8f25
.github/build.py
@@ -1,6 +1,5 @@
1
import argparse
2
import os
3
-import platform
4
import subprocess
5
from urllib.request import urlretrieve
6
@@ -100,8 +99,6 @@ def build(self):
100
99
f"-j{self.cpu_count}",
101
"CPPFLAGS='-DNDEBUG -DSWIG'",
102
]
103
- if platform.system() == "Darwin":
104
- make_options.append("AR=c++ -shared -fPIC -Wl,-headerpad_max_install_names") # fix macos install_name_tool issues
105
if self.boost_prefix:
106
make_options.append(f"BOOST_BASE={self.boost_prefix}")
107
if self.xerces_c_prefix:
0 commit comments