Skip to content

Commit

Permalink
Make: Compiling wheels on unknown platforms
Browse files Browse the repository at this point in the history
Closes #187

Co-authored-by: yurivict <271906+yurivict@users.noreply.github.com>
  • Loading branch information
ashvardanian and yurivict committed Oct 30, 2024
1 parent 720ea37 commit d04a401
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ def windows_settings() -> Tuple[List[str], List[str], List[Tuple[str]]]:
elif sys.platform == "win32":
compile_args, link_args, macros_args = windows_settings()

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

ext_modules = [
Extension(
Expand Down

0 comments on commit d04a401

Please sign in to comment.