According to documentation: The option /MD causes your application to use the multithread- and DLL-specific version of the run-time library. Defines _MT and _DLL and causes the compiler to place the library name MSVCRT.lib into the .obj file.
Applications compiled with this option are statically linked to MSVCRT.lib. This library provides a layer of code that allows the linker to resolve external references. The actual working code is contained in MSVCR100.DLL, which must be available at run time to applications linked with MSVCRT.lib. CC: [email protected] Signed-off-by: Gurucharan Shetty <[email protected]> --- build-aux/cccl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/cccl b/build-aux/cccl index f6972d4..a79c3c6 100644 --- a/build-aux/cccl +++ b/build-aux/cccl @@ -131,7 +131,7 @@ EOF shift case "$1" in *.o | *.obj) - clopt="$clopt ${slash}Fo$1" + clopt="$clopt ${slash}MD ${slash}Fo$1" ;; *) clopt="$clopt ${slash}Fe$1"; -- 1.8.4.msysgit.0 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
