From bca6686c918970879e2d050c1a732c8a7f127f5f Mon Sep 17 00:00:00 2001 From: Fons Rademakers Date: Tue, 17 Dec 2013 10:32:16 +0100 Subject: [PATCH] add support for win64gcc. By Bertrand. --- Module.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Module.mk b/Module.mk index f4f98364..6b72c5d4 100644 --- a/Module.mk +++ b/Module.mk @@ -68,7 +68,7 @@ ifeq ($(ROOTBUILD),debug) endif CLINGCXXFLAGS += $(CLINGCXXNDEBUG) -ifeq ($(ARCH),win32gcc) +ifneq (,$(findstring $(ARCH),win32gcc win64gcc)) # Hide llvm / clang symbols: CLINGLDFLAGSEXTRA += -Wl,--exclude-libs,ALL endif @@ -82,7 +82,7 @@ CLINGLIBEXTRA = $(CLINGLDFLAGSEXTRA) -L$(shell $(LLVMCONFIG) --libdir) \ $(filter-out -lLLVMipa,$(shell $(LLVMCONFIG) --libs)))\ $(shell $(LLVMCONFIG) --ldflags) -ifeq ($(ARCH),win32gcc) +ifneq (,$(findstring $(ARCH),win32gcc win64gcc)) # for EnumProcessModules() in TCling.cxx CLINGLIBEXTRA += -lpsapi endif