Browse Source

Set correct language version for str.data() to be non-const char*

default_compile_flags
vector-of-bool 4 years ago
parent
commit
6952c51256
2 changed files with 3 additions and 1 deletions
  1. +2
    -1
      tests/deps/use-cryptopp/gcc.tc.jsonc
  2. +1
    -0
      tests/deps/use-cryptopp/msvc.tc.jsonc

+ 2
- 1
tests/deps/use-cryptopp/gcc.tc.jsonc View File

@@ -1,6 +1,7 @@
{
"compiler_id": "gnu",
"cxx_compiler": "g++-9",
"cxx_version": "c++17",
// All required for Crypto++ intrinsics:
"flags": "-msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mpclmul -maes -mavx -mavx2 -msha",
"flags": "-msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mpclmul -maes -mavx -mavx2 -msha -Wa,-q",
}

+ 1
- 0
tests/deps/use-cryptopp/msvc.tc.jsonc View File

@@ -1,3 +1,4 @@
{
"compiler_id": 'msvc',
"flags": "/std:c++17"
}

Loading…
Cancel
Save