Skip to content
Snippets Groups Projects
Commit 8558fda7 authored by Martin Larralde's avatar Martin Larralde
Browse files

Fix Arm NEON compile flags in `setup.py`

parent ee34237b
No related merge requests found
......@@ -502,7 +502,7 @@ libraries = [
PlatformCode(
platform="NEON",
sources=[os.path.join("pyfastani", "_sequtils", "neon.c")],
extra_compile_args=["-mneon"],
extra_compile_args=[] if PROCESSOR_IS_AARCH64 else ["-mfpu=neon"],
),
PlatformCode(
platform="SSE2",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment