We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 888ea07 commit 89da381Copy full SHA for 89da381
build_conquest_python.py
@@ -217,8 +217,11 @@ def configuration_script(self):
217
def arguments_to_configuration_script(self):
218
args = super().arguments_to_configuration_script + [
219
'--enable-shared',
220
- '--enable-threads',
+ # '--enable-threads',
221
'--enable-64bit',
222
+ f"LDFLAGS={ConquestPythonPackage().python_base_directory / 'lib'}",
223
+ f"CFLAGS={ConquestPythonPackage().python_base_directory / 'include'}",
224
+ f"CPPFLAGS={ConquestPythonPackage().python_base_directory / 'include'}",
225
]
226
if self.macos:
227
args.extend([
0 commit comments