From 5c93058ad78f4bb4931993332165e49f3ccb3170 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Sat, 30 Mar 2019 16:55:27 -0400 Subject: [PATCH] BuildSetup: Stop defining __INTEL__ for the host tools. Nothing in the tree uses __INTEL__ anymore, so this is no longer needed. --- build/jam/BuildSetup | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/build/jam/BuildSetup b/build/jam/BuildSetup index fdffe9aaab..3f5118bcbb 100644 --- a/build/jam/BuildSetup +++ b/build/jam/BuildSetup @@ -433,16 +433,6 @@ if $(HOST_PLATFORM_HAIKU_COMPATIBLE) { } } - # The BeOS compilers define __INTEL__ respectively __POWERPC__. On the - # build platform we need to make sure, this is also defined. - if $(HOST_CPU) = x86 { - HOST_DEFINES += __INTEL__ ; - } else if $(HOST_CPU) = ppc { - HOST_DEFINES += __POWERPC__ ; - } else if $(HOST_CPU) = m68k { - HOST_DEFINES += __M68K__ ; - } - # Supposing this is a glibc platform, let's try to get features like large # file support, ISO C 99 definitions, etc. On some platforms we need to # request 64 bit off_t support explicitely.