-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sse4.1: use logical OR instead of bitwise OR in neon impl of _mm_test…
…nzc_si128 Caught by clang-14+
- Loading branch information
Showing
5 changed files
with
82 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[binaries] | ||
c = ['ccache', 'clang-15'] | ||
cpp = ['ccache', 'clang++-15'] | ||
ar = 'llvm-ar-15' | ||
strip = 'llvm-strip-15' | ||
objcopy = 'llvm-objcopy-15' | ||
ld = 'llvm-ld-15' | ||
exe_wrapper = ['qemu-aarch64-static', '-L', '/usr/aarch64-linux-gnu'] | ||
|
||
[properties] | ||
c_args = ['--target=aarch64-linux-gnu', '-march=armv8-a+simd+crypto+crc', '-isystem=/usr/aarch64-linux-gnu/include', '-Weverything', '-fno-lax-vector-conversions', '-Werror'] | ||
cpp_args = ['--target=aarch64-linux-gnu', '-march=armv8-a+simd+crypto+crc', '-isystem=/usr/aarch64-linux-gnu/include', '-Weverything', '-fno-lax-vector-conversions', '-Werror'] | ||
c_link_args = ['--target=aarch64-linux-gnu'] | ||
cpp_link_args = ['--target=aarch64-linux-gnu'] | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'aarch64' | ||
cpu = 'arm64' | ||
endian = 'little' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[binaries] | ||
c = ['ccache', 'clang-15'] | ||
cpp = ['ccache', 'clang++-15'] | ||
ar = 'llvm-ar-15' | ||
strip = 'llvm-strip-15' | ||
objcopy = 'llvm-objcopy-15' | ||
ld = 'llvm-ld-15' | ||
exe_wrapper = ['qemu-ppc64le-static', '-cpu', 'power9', '-L', '/usr/powerpc64le-linux-gnu/'] | ||
|
||
[properties] | ||
c_args = ['--target=powerpc64le-linux-gnu', '-mcpu=power9', '-isystem=/usr/powerpc64le-linux-gnu/include', '-Weverything', '-fno-lax-vector-conversions', '-Werror', '-Wno-deprecated-altivec-src-compat'] | ||
cpp_args = ['--target=powerpc64le-linux-gnu', '-mcpu=power9', '-isystem=/usr/powerpc64le-linux-gnu/include', '-Weverything', '-fno-lax-vector-conversions', '-Werror', '-Wno-deprecated-altivec-src-compat'] | ||
c_link_args = ['--target=powerpc64le-linux-gnu'] | ||
cpp_link_args = ['--target=powerpc64le-linux-gnu'] | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'ppc64' | ||
cpu = 'ppc64el' | ||
endian = 'little' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[binaries] | ||
c = ['ccache', 'clang-15'] | ||
cpp = ['ccache', 'clang++-15'] | ||
ar = 'llvm-ar-15' | ||
strip = 'llvm-strip-15' | ||
objcopy = 'llvm-objcopy-15' | ||
ld = 'llvm-ld-15' | ||
exe_wrapper = ['qemu-riscv64-static', '-L', '/usr/riscv64-linux-gnu/'] | ||
|
||
[properties] | ||
c_args = ['--target=riscv64-linux-gnu', '-isystem=/usr/riscv64-linux-gnu/include', '-Wextra', '-Werror'] | ||
cpp_args = ['--target=riscv64-linux-gnu', '-isystem=/usr/riscv64-linux-gnu/include', '-Wextra', '-Werror'] | ||
c_link_args = ['--target=riscv64-linux-gnu'] | ||
cpp_link_args = ['--target=riscv64-linux-gnu'] | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'riscv64' | ||
cpu = 'riscv64' | ||
endian = 'little' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[binaries] | ||
c = ['ccache', 'clang-15'] | ||
cpp = ['ccache', 'clang++-15'] | ||
ar = 'llvm-ar-15' | ||
strip = 'llvm-strip-15' | ||
objcopy = 'llvm-objcopy-15' | ||
ld = 'llvm-ld-15' | ||
exe_wrapper = ['qemu-s390x-static', '-L', '/usr/s390x-linux-gnu/'] | ||
|
||
[properties] | ||
c_args = ['--target=s390x-ibm-linux', '-isystem=/usr/s390x-linux-gnu/include', '-Weverything', '-fno-lax-vector-conversions', '-Werror'] | ||
cpp_args = ['--target=s390x-ibm-linux', '-isystem=/usr/s390x-linux-gnu/include', '-Weverything', '-fno-lax-vector-conversions', '-Werror'] | ||
c_link_args = ['--target=s390x-ibm-linux'] | ||
cpp_link_args = ['--target=s390x-ibm-linux'] | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 's390x' | ||
cpu = 's390x' | ||
endian = 'big' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters