diff options
author | Damjan Marion <damarion@cisco.com> | 2023-04-17 09:38:11 +0000 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2023-04-17 10:54:34 +0000 |
commit | 98f7f0a873514604e2cf0433ea06f1705b023b60 (patch) | |
tree | 5c364ca0ae6353b5e048290bcfca601f72811c9c /src/cmake | |
parent | b42d27ad4825ae44ff81b83b6170523d8739cb43 (diff) |
build: add scalar (no-simd) march variant
for testing purposes, disabled by default
Type: improvement
Signed-off-by: Damjan Marion <damarion@cisco.com>
Change-Id: Id616e2b3b21ae0f0b44e2b55ecefd501afacc7f2
Diffstat (limited to 'src/cmake')
-rw-r--r-- | src/cmake/cpu.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cmake/cpu.cmake b/src/cmake/cpu.cmake index c10158b4ab9..031a9bcfe93 100644 --- a/src/cmake/cpu.cmake +++ b/src/cmake/cpu.cmake @@ -131,6 +131,11 @@ elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*") OFF ) + add_vpp_march_variant(scalar + FLAGS -march=core2 -mno-mmx -mno-sse + OFF + ) + if (GNU_ASSEMBLER_AVX512_BUG) message(WARNING "AVX-512 multiarch variant(s) disabled due to GNU Assembler bug") else() |