Skip to content

Commit d04a401

Browse files
Make: Compiling wheels on unknown platforms
Closes #187 Co-authored-by: yurivict <[email protected]>
1 parent 720ea37 commit d04a401

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@ def windows_settings() -> Tuple[List[str], List[str], List[Tuple[str]]]:
127127
elif sys.platform == "win32":
128128
compile_args, link_args, macros_args = windows_settings()
129129

130+
# TODO: It would be great to infer available compilation flags on FreeBSD. They are likely similar to Linux
131+
else:
132+
compile_args, link_args, macros_args = [], [], []
130133

131134
ext_modules = [
132135
Extension(

0 commit comments

Comments
 (0)