From 16f9cbc82a7923bb21698c2e6f7f2a93a59dfeba Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 28 Dec 2018 11:43:55 -0500 Subject: [PATCH] Add comments on potential environment misdetection --- cryptest.nmake | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cryptest.nmake b/cryptest.nmake index e2a5db72..7fd6dbfa 100644 --- a/cryptest.nmake +++ b/cryptest.nmake @@ -129,6 +129,13 @@ LD = link.exe AR = lib.exe RM = del.exe +# We may misdetect the environment on VS2005 or so. Uncomment as +# needed to match the Developer Prompt environment. +# PLATFORM = x86 +# PLATFORM = x64 +# PLATFORM = arm +# PLATFORM = arm64 + # C4231 is needed for VS2008 and below. Lots of noise... CXXFLAGS = /nologo /W4 /wd4231 /wd4511 /wd4156 /D_MBCS /Zi /TP /GR /EHsc LDFLAGS = /nologo /SUBSYSTEM:CONSOLE /DEBUG