diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-09-14 17:43:16 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-09-14 17:43:16 +0000 |
commit | 7b70a704e0f9197a79a37007968246ce4f66bcc0 (patch) | |
tree | 531028ea1f0dfb7159559857b539a413d4711412 /config/target.in | |
parent | ae7e017380b93899c1165acb9b60ddd80276b022 (diff) | |
download | crosstool-ng-7b70a704e0f9197a79a37007968246ce4f66bcc0.tar.gz crosstool-ng-7b70a704e0f9197a79a37007968246ce4f66bcc0.tar.bz2 crosstool-ng-7b70a704e0f9197a79a37007968246ce4f66bcc0.zip |
Add the framework to have architecture-specific configuration and functions.
API is not yet defined.
Diffstat (limited to 'config/target.in')
-rw-r--r-- | config/target.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config/target.in b/config/target.in index 27c71d3f..5c36531b 100644 --- a/config/target.in +++ b/config/target.in @@ -74,6 +74,23 @@ config ARCH_LE endchoice +# Include architecture-specific configuration +if ARCH_ARM +source config/arch/arm/config.in +endif +if ARCH_IA64 +source config/arch/ia64/config.in +endif +if ARCH_MIPS +source config/arch/mips/config.in +endif +if ARCH_x86 +source config/arch/x86/config.in +endif +if ARCH_x86_64 +source config/arch/x86_64/config.in +endif + comment "Target optimisations" config ARCH_ARCH |