Skip to content

Commit 89da381

Browse files
Try and manually specify include library and include paths for tcp (CQ-1519)
1 parent 888ea07 commit 89da381

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build_conquest_python.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,11 @@ def configuration_script(self):
217217
def arguments_to_configuration_script(self):
218218
args = super().arguments_to_configuration_script + [
219219
'--enable-shared',
220-
'--enable-threads',
220+
# '--enable-threads',
221221
'--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'}",
222225
]
223226
if self.macos:
224227
args.extend([

0 commit comments

Comments
 (0)