Browse Source

Set arch flags to enable intrinsics for the Crypto++ test build

default_compile_flags
vector-of-bool 4 years ago
parent
commit
5c9c907405
1 changed files with 4 additions and 5 deletions
  1. +4
    -5
      tests/deps/use-cryptopp/gcc.tc.jsonc

+ 4
- 5
tests/deps/use-cryptopp/gcc.tc.jsonc View File

@@ -1,7 +1,6 @@
{
"compiler_id": 'gnu',
"cxx_version": 'c++17',
"cxx_compiler": 'g++-9',
"flags": '-march=native',
"link_flags": '-static-libgcc -static-libstdc++'
"compiler_id": "gnu",
"cxx_compiler": "g++-9",
// All required for Crypto++ intrinsics:
"flags": "-msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mpclmul -maes -mavx -mavx2 -msha",
}

Loading…
Cancel
Save