From c400c7b38d3ad7ec6e69df72da01b8292d23bd38 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 6 Oct 2016 16:00:28 -0400 Subject: [PATCH] Fix rdrand ASM with ARM-based MSBuilds (Issue 316) --- cryptlib.vcxproj | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/cryptlib.vcxproj b/cryptlib.vcxproj index 7357b047..7ecc5511 100644 --- a/cryptlib.vcxproj +++ b/cryptlib.vcxproj @@ -314,12 +314,15 @@ echo: >> adhoc.cpp.copied - + Building and assembling rdrand.asm - ml.exe /c /nologo /D_M_X86 /W3 /Cx /Zi /safeseh /Fo"$(IntDir)rdrand-x86.obj" /Zi "%(FullPath)" - $(IntDir)rdrand-x86.obj - ml64.exe /c /nologo /D_M_X64 /W3 /Cx /Zi /Fo"$(IntDir)rdrand-x64.obj" /Zi "%(FullPath)" - $(IntDir)rdrand-x64.obj + ml.exe /c /nologo /D_M_X86 /W3 /Cx /Zi /safeseh /Fo"$(IntDir)rdrand-x86.obj" "%(FullPath)" + $(IntDir)\rdrand-x86.obj + + + Building and assembling rdrand.asm + ml64.exe /c /nologo /D_M_X64 /W3 /Cx /Zi /Fo"$(IntDir)rdrand-x64.obj" "%(FullPath)" + $(IntDir)\rdrand-x64.obj true