Update comments for CRYPTOPP_DISABLE_ASM

This commit is contained in:
Jeffrey Walton 2023-10-02 05:56:48 -04:00
parent 121014baf0
commit 49fef81923
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -27,12 +27,12 @@
#include "config_cpu.h"
#include "config_ver.h"
// Define this to disable ASM, intrinsics and built-ins. The library will be
// compiled using C++ only. The library code will not include SSE2 (and
// above), NEON, Aarch32, Aarch64, or Altivec (and above). Note the compiler
// may use higher ISAs depending on compiler options, but the library will not
// explicitly use the ISAs. When disabling ASM, it is best to do it from
// config.h to ensure the library and all programs share the setting.
// Define this to disable ASM, intrinsics and built-ins. The library code will
// not explicitly include SSE2 (and above), NEON, Aarch32, Aarch64, or Altivec
// (and above). Note the compiler may use higher ISAs depending on compiler
// options, but the library will not explicitly use the ISAs. When disabling ASM,
// it is best to do it from config_asm.h to ensure the library and all programs
// share the setting.
// #define CRYPTOPP_DISABLE_ASM 1
// https://github.com/weidai11/cryptopp/issues/719