Skip to content

Commit

Permalink
Make: Using SIMD on FreeBSD (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
yurivict authored Dec 19, 2024
1 parent 5affd61 commit 6700fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def windows_settings() -> Tuple[List[str], List[str], List[Tuple[str]]]:
return compile_args, link_args, macros_args


if sys.platform == "linux":
if sys.platform == "linux" or sys.platform.startswith('freebsd'):
compile_args, link_args, macros_args = linux_settings()

elif sys.platform == "darwin":
Expand Down

0 comments on commit 6700fcc

Please sign in to comment.