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.)
This commit is contained in:
Viktor Szakats
2009-11-02 01:17:21 +00:00
parent 3ef4c5f0f5
commit 5f3348c5ae
2 changed files with 8 additions and 0 deletions

View File

@@ -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<Type> -> HB_<TYPE>.

View File

@@ -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