From 1e552c57e4910f6c35e806e3b060ac1bc232d8ff Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 9 May 2001 21:31:55 +0000 Subject: [PATCH] added info on the MDd option --- README.WIN32 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.WIN32 b/README.WIN32 index f017e1cd6..1d3667efe 100644 --- a/README.WIN32 +++ b/README.WIN32 @@ -196,4 +196,10 @@ NT resource kit. include from \base\include, include from \base\include\os\win32, and augment the link path with \base\lib\win32-x86. If the visual C++ /Za option is not used then you will also need to define __STDC__ to be zero -on the command line. +on the command line. Its important that all .DLL and .EXE files in the same +process use the same version of the Microsoft run-time support. Therefore, +you must also use the /MDd (multithreaded debug DLL version of the Microsoft +run-time libraries) or /MD (multithreaded DLL version of the Microsoft run-time +libraries) options depending on if it is an debug build or not. The above assumes +that you are linking with the DLL versions of the EPICS libraries (xxx.lib) and +not with th object libraries (xxxObj.lib).