VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Crypto/Makefile.inc
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2019-10-30 00:15:28 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2019-10-30 08:52:55 +0100
commit7a35ecb154fc979d46dea8d97d0ad97fd4ae4140 (patch)
tree185a5ed69b1fd7cdde2d3b0e68841e76e1c13d8b /src/Crypto/Makefile.inc
parent3b5d4771a0af5b4fc89ec77f43826b9ae2544949 (diff)
downloadVeraCrypt-7a35ecb154fc979d46dea8d97d0ad97fd4ae4140.tar.gz
VeraCrypt-7a35ecb154fc979d46dea8d97d0ad97fd4ae4140.zip
Windows: use separate assembly files for RDRAND and RDSEED in order to fix a mysterious crash when MASM_RDSEED_GenerateBlock is called after MASM_RDRAND_GenerateBlock.
Diffstat (limited to 'src/Crypto/Makefile.inc')
-rw-r--r--src/Crypto/Makefile.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Crypto/Makefile.inc b/src/Crypto/Makefile.inc
index 86b7a6fa..c8d2dfdf 100644
--- a/src/Crypto/Makefile.inc
+++ b/src/Crypto/Makefile.inc
@@ -60,4 +60,8 @@ TC_ASM_ERR_LOG = ..\Driver\build_errors_asm.log
"$(OBJ_PATH)\$(O)\rdrand_ml.obj": rdrand_ml.asm
$(VC_MLEXE) $(VC_MLFLAGS) /Fo "$@" /c rdrand_ml.asm 2>$(TC_ASM_ERR_LOG)
+
+"$(OBJ_PATH)\$(O)\rdseed_ml.obj": rdseed_ml.asm
+ $(VC_MLEXE) $(VC_MLFLAGS) /Fo "$@" /c rdseed_ml.asm 2>$(TC_ASM_ERR_LOG)
+