From 23ae7f173577cbe2d62a4f7d64340f6457c75ee3 Mon Sep 17 00:00:00 2001 From: Sisyphus Date: Thu, 20 May 2010 17:56:07 -0700 Subject: Fix CCINCDIR and CCLIBDIR for mingw64 cross compiler When building perl with the mingw64 x64 cross-compiler 'incpath', 'libpth', 'ldflags', 'lddlflags' and 'ldflags_nolargefiles' values in Config.pm and Config_heavy.pl are not being set correctly because, with that compiler, the include and lib directories are not immediately below $(CCHOME). --- win32/makefile.mk | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/win32/makefile.mk b/win32/makefile.mk index 7d56063c51..c9686fb4f2 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -221,8 +221,6 @@ CCHOME *= C:\MinGW .ELSE CCHOME *= $(MSVCDIR) .ENDIF -CCINCDIR *= $(CCHOME)\include -CCLIBDIR *= $(CCHOME)\lib # # If building with gcc-4.x.x (or x86_64-w64-mingw32-gcc-4.x.x), then @@ -247,6 +245,18 @@ CCLIBDIR *= $(CCHOME)\lib # #GCCCROSS *= define +# +# Following sets $Config{incpath} and $Config{libpth} +# + +.IF "$(GCCCROSS)" == "define" +CCINCDIR *= $(CCHOME)\mingw\include +CCLIBDIR *= $(CCHOME)\mingw\lib +.ELSE +CCINCDIR *= $(CCHOME)\include +CCLIBDIR *= $(CCHOME)\lib +.ENDIF + # # Additional compiler flags can be specified here. # -- cgit v1.2.1