From 5f3348c5ae5ed1cbe4786420a0bb6302e7639aba Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 2 Nov 2009 01:17:21 +0000 Subject: [PATCH] 2009-11-02 02:14 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * config/global.mk + Added autodetection of x86_64 architecture on win platform even when using 32-bit build of GNU Make. (This makes usage of 64-bit build of GNU Make less important.) --- harbour/ChangeLog | 6 ++++++ harbour/config/global.mk | 2 ++ 2 files changed, 8 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 24028adf0e..c3029c4aaf 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,12 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-11-02 02:14 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * config/global.mk + + Added autodetection of x86_64 architecture on win platform + even when using 32-bit build of GNU Make. + (This makes usage of 64-bit build of GNU Make less important.) + 2009-11-01 19:20 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * contrib/hbcurl/hbcurl.c ! hb -> HB_. diff --git a/harbour/config/global.mk b/harbour/config/global.mk index bfb73eda4d..27348bed07 100644 --- a/harbour/config/global.mk +++ b/harbour/config/global.mk @@ -447,6 +447,8 @@ HB_HOST_CPU := ifeq ($(HB_HOST_PLAT),win) ifeq ($(PROCESSOR_ARCHITECTURE),AMD64) HB_HOST_CPU := x86_64 + else ifeq ($(PROCESSOR_ARCHITEW6432),AMD64) + HB_HOST_CPU := x86_64 else ifeq ($(PROCESSOR_ARCHITECTURE),IA64) HB_HOST_CPU := ia64 else