From 4dc69971bc53e4f4a1f770d505966ac315ac05f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sun, 6 Dec 2009 14:22:44 +0000 Subject: [PATCH] Force 64bit for i686-apple-darwin10 (OSX), since it seems to fool everyone about it being still 32bit (well the kernel maybe but not the rest). This makes the build go further along on OSX 10.6. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34522 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- build/jam/BuildSetup | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/jam/BuildSetup b/build/jam/BuildSetup index 99b13c0355..ddfdbf69b3 100644 --- a/build/jam/BuildSetup +++ b/build/jam/BuildSetup @@ -487,6 +487,8 @@ if $(HAIKU_HOST_USE_32BIT) = 1 { } else { switch $(HOST_GCC_MACHINE) { case x86_64-* : HOST_PLATFORM_IS_64_BIT = 1 ; + case i686-apple-darwin10 : + HOST_PLATFORM_IS_64_BIT = 1 ; } }