We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ddb4c5 commit 9c3f81cCopy full SHA for 9c3f81c
vendor/mbedtls/include/mbedtls/config.h
@@ -2371,7 +2371,8 @@
2371
*
2372
* This modules adds support for the AES-NI instructions on x86.
2373
*/
2374
-#define MBEDTLS_AESNI_C
+// NOTE(patrik): Commented out on MTA, set conditionally via premake5.lua
2375
+// #define MBEDTLS_AESNI_C
2376
2377
/**
2378
* \def MBEDTLS_AES_C
vendor/mbedtls/premake5.lua
@@ -264,7 +264,7 @@ project "mbedtls"
264
filter "system:windows"
265
links { "ws2_32" }
266
267
- filter "architecture:not x86"
268
- undefines {
+ filter "architecture:x86"
+ defines {
269
"MBEDTLS_AESNI_C"
270
}
0 commit comments