Re: [PATCH 13/17] msvc: support building Git using MS Visual C++
From: Carlo Arenas <hidden>
Date: 2019-06-19 00:51:52
From: Carlo Arenas <hidden>
Date: 2019-06-19 00:51:52
On Tue, Jun 18, 2019 at 5:26 AM Jeff Hostetler via GitGitGadget [off-list ref] wrote:
diff --git a/compat/mingw.c b/compat/mingw.c index d14d33308d..667285887a 100644 --- a/compat/mingw.c +++ b/compat/mingw.c@@ -2388,6 +2388,12 @@ static void maybe_redirect_std_handles(void) GENERIC_WRITE, FILE_FLAG_NO_BUFFERING); } +#ifdef _MSC_VER +#ifdef _DEBUG
why not use DEBUG instead (without the leading underscore), then you could also drop the -D_DEBUG below ...
+ # BASIC_CLFAGS += -DUSE_MSVC_CRTDBG
typo Carlo