Enable linux-riscv64 builds
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
6e5605e200
commit
a5d28c2707
9 changed files with 107 additions and 5 deletions
|
@ -21,6 +21,9 @@
|
|||
# include_next <mmintrin.h>
|
||||
#elif defined(__EMSCRIPTEN__)
|
||||
# include <wasm_simd128.h>
|
||||
#else
|
||||
#elif defined(__ARM_NEON)
|
||||
# include "../sse2neon/sse2neon.h"
|
||||
#else
|
||||
# define SIMDE_ENABLE_NATIVE_ALIASES
|
||||
# include "../simde/simde/x86/mmx.h"
|
||||
#endif
|
||||
|
|
|
@ -29,7 +29,7 @@ __m64 _mm_set1_pi16(short w)
|
|||
return __extension__ (__m64){ static_cast<float>(w), static_cast<float>(w) };
|
||||
}
|
||||
|
||||
#else
|
||||
#elif defined(__ARM_NEON)
|
||||
# include "../sse2neon/sse2neon.h"
|
||||
|
||||
static inline
|
||||
|
@ -44,4 +44,10 @@ __m64 _mm_set1_pi16(short w)
|
|||
return vreinterpret_s64_s16(vdup_n_s16(w));
|
||||
}
|
||||
|
||||
#else
|
||||
# define SIMDE_ENABLE_NATIVE_ALIASES
|
||||
# include "../simde/simde/x86/sse.h"
|
||||
# include "../simde/simde/x86/sse2.h"
|
||||
// # include "../simde/simde/x86/sse3.h"
|
||||
|
||||
#endif
|
||||
|
|
1
include/simde
Submodule
1
include/simde
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 12069d720f43830ae9791e8b0f4c4fa3c88012a0
|
Loading…
Add table
Add a link
Reference in a new issue