summaryrefslogtreecommitdiff
path: root/cryptest.nmake
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-18 17:55:23 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-18 17:55:23 -0400
commitc88f09dad846401d6e8b0bd28911e2daa809c1a0 (patch)
treeee8633ea1d4d6c87a659093d681d1c6ede362edd /cryptest.nmake
parentd689c11b2dc9f77cc952833cba4edab52d12a79f (diff)
downloadcryptopp-git-c88f09dad846401d6e8b0bd28911e2daa809c1a0.tar.gz
Updated comments
Diffstat (limited to 'cryptest.nmake')
-rw-r--r--cryptest.nmake6
1 files changed, 4 insertions, 2 deletions
diff --git a/cryptest.nmake b/cryptest.nmake
index 8d8cecac..afa2e5f4 100644
--- a/cryptest.nmake
+++ b/cryptest.nmake
@@ -12,11 +12,13 @@
# point for a DLL project using Crypto++.
# You must also add /DDEBUG if you want a debug build with the library's assert. The library moved
-# from Posix Assert to CRYPTOPP_ASSERT at 5.6.5 due to CVE-2016-7420. CRYPTOPP_ASSERT has the
-# additional benefit of using DebugBreak, so the program does not crash while you are debugging it.
+# from Posix NDEBUG and Assert to CRYPTOPP_ASSERT at 5.6.5 due to CVE-2016-7420. CRYPTOPP_ASSERT has
+# the additional benefit of using DebugBreak, the program does not crash while you are debugging it.
# The list of LIB_SRCS and TEST_SRCS was generated under Linux with "make sources". The list of
# LIB_OBJS and TEST_OBJS was generated under Linux with "make sources | sed 's|.cpp|.obj|g'".
+# The order of the firt three object files are significant. See C++ Static Initialization Order
+# Fisaco on the Crypto++ wiki for details.
# You are free to add and remove files to the list. For example, you can remove rdrand.asm
# build it using NASM, and then include the NASM object file rdrand_x86.obj or rdrand_x64.obj.