diff options
| author | Bryan Hundven <bryanhundven@gmail.com> | 2015-11-14 17:40:08 -0800 |
|---|---|---|
| committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-11-14 17:40:08 -0800 |
| commit | 38f5ad90054c835da8119a4a765c5a7834114e37 (patch) | |
| tree | 2df2aec57876e1bd06f2909f88be3047e882a282 /config | |
| parent | 0a1a1ce51c704bb1c06e0a9dd19af53910113003 (diff) | |
| parent | 2541bd0b118f8fee6d200910e9c9211dd732f207 (diff) | |
| download | crosstool-ng-38f5ad90054c835da8119a4a765c5a7834114e37.tar.gz crosstool-ng-38f5ad90054c835da8119a4a765c5a7834114e37.tar.bz2 crosstool-ng-38f5ad90054c835da8119a4a765c5a7834114e37.zip | |
Merge pull request #258 from stilor/check-samples
Update samples
Diffstat (limited to 'config')
| -rw-r--r-- | config/arch/arm.in | 1 | ||||
| -rw-r--r-- | config/target.in | 7 |
2 files changed, 6 insertions, 2 deletions
diff --git a/config/arch/arm.in b/config/arch/arm.in index 5d40e372..5dbc717d 100644 --- a/config/arch/arm.in +++ b/config/arch/arm.in @@ -9,6 +9,7 @@ ## select ARCH_DEFAULT_LE ## select ARCH_SUPPORTS_WITH_ARCH ## select ARCH_SUPPORTS_WITH_CPU +## select ARCH_EXCLUSIVE_WITH_CPU ## select ARCH_SUPPORTS_WITH_TUNE ## select ARCH_SUPPORTS_WITH_FLOAT if ARCH_32 ## select ARCH_SUPPORTS_WITH_FPU if ARCH_32 diff --git a/config/target.in b/config/target.in index 31d2dc1b..8cbaabc0 100644 --- a/config/target.in +++ b/config/target.in @@ -210,11 +210,14 @@ config ARCH_SUPPORTS_WITH_FPU config ARCH_SUPPORTS_SOFTFP bool +config ARCH_EXCLUSIVE_WITH_CPU + bool + config ARCH_ARCH string prompt "Architecture level" depends on ARCH_SUPPORTS_WITH_ARCH - depends on ARCH_CPU = "" + depends on !ARCH_EXCLUSIVE_WITH_CPU || ARCH_CPU = "" default "" help GCC uses this name to determine what kind of instructions it can emit @@ -271,7 +274,7 @@ config ARCH_TUNE string prompt "Tune for CPU" depends on ARCH_SUPPORTS_WITH_TUNE - depends on ARCH_CPU = "" + depends on !ARCH_EXCLUSIVE_WITH_CPU || ARCH_CPU = "" default "" help This option is very similar to the ARCH_CPU option (above), except |
