summaryrefslogtreecommitdiffstats
path: root/multiarch-dispatch-host.def
blob: 2cd1340c8c8b8c4e0cfcbd6640b165bdb32d6360 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Dispatch arch dependent configuration */
#if defined(AMD64Architecture) || defined(x86_64Architecture)
#include "host-x86_64.def"
#elif defined(i386Architecture)
#include "host-i386.def"
#elif defined(Ppc64Architecture)
#include "host-ppc64.def"
#elif defined(PpcArchitecture)
#include "host-ppc.def"
#elif defined(Sparc64Architecture)
#include "host-sparc64.def"
#elif defined(SparcArchitecture)
#include "host-sparc.def"
#elif defined(s390xArchitecture)
#include "host-s390x.def"
#elif defined(s390Architecture)
#include "host-s390.def"
#elif defined(ia64Architecture)
#include "host-ia64.def"
#elif defined(AlphaArchitecture)
#include "host-alpha.def"
#else
#error "Unknown architecture, please submit bug report"
#endif