Add comments on potential environment misdetection

This commit is contained in:
Jeffrey Walton 2018-12-28 11:43:55 -05:00
parent 9c58ba8f2b
commit 16f9cbc82a
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -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