mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
- replace complex.h hack with less crude hack - use sse2neon to build on armv7/aarch64 - armv7 should work, but falls to an unrelated issue - touch up CFLAGS slightly - rework do-test
13 lines
282 B
C
13 lines
282 B
C
--- src/intrinsics.h.orig 2024-10-15 15:55:56 UTC
|
|
+++ src/intrinsics.h
|
|
@@ -20,7 +20,9 @@
|
|
*/
|
|
|
|
|
|
-#if defined(__ICC)
|
|
+#if defined(__arm__) || defined(__aarch64__)
|
|
+#include <sse2neon.h>
|
|
+#elif defined(__ICC)
|
|
#include <xmmintrin.h>
|
|
#elif defined(__GNUC__)
|
|
#include <x86intrin.h>
|