1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Description: use the system's simde library.
This allows building plink1.9 for arm64 (and probably other
architectures too).
.
Forwarding upstream is not needed because they use an embedded copy of
simde instead of the operating system's.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/1105180
Forwarded: not-needed
Last-Update: 2025-05-13
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- plink1-9.orig/SFMT.h
+++ plink1-9/SFMT.h
@@ -133,7 +133,7 @@
#include <emmintrin.h>
#else
#define SIMDE_ENABLE_NATIVE_ALIASES
- #include "x86/sse2.h"
+ #include <simde/x86/sse2.h>
#endif
/** 128-bit data structure */
--- plink1-9.orig/plink_common.h
+++ plink1-9/plink_common.h
@@ -191,7 +191,7 @@
#include <emmintrin.h>
#else
#define SIMDE_ENABLE_NATIVE_ALIASES
- #include "x86/sse2.h"
+ #include <simde/x86/sse2.h>
#endif
#define VECFTYPE __m128
|