From 2d24d5ce019dfe8f90de5b97a7997f504bc22e1a Mon Sep 17 00:00:00 2001 From: tetsuo55 Date: Thu, 11 May 2017 10:36:37 +0200 Subject: [PATCH] dmake: Add support for mingw64 running dmake under mingw64 causes an error the makefile will have to be recreated under linux --- tools/dmake.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/dmake.cpp b/tools/dmake.cpp index 62557997a..0b865a780 100644 --- a/tools/dmake.cpp +++ b/tools/dmake.cpp @@ -238,7 +238,7 @@ int main(int argc, char **argv) << " CPPCHK_GLIBCXX_DEBUG=\n" << " endif # !CPPCHK_GLIBCXX_DEBUG\n" << "\n" - << " ifeq ($(MSYSTEM),MINGW32)\n" + << " ifeq ($(MSYSTEM),MINGW32 MINGW64)\n" << " LDFLAGS=-lshlwapi\n" << " else\n" << " RDYNAMIC=-lshlwapi\n"