diff options
author | Alexey Neyman <stilor@att.net> | 2020-02-26 08:49:59 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2020-02-26 11:05:19 -0800 |
commit | d978290f39196e7c2c72a154f32681386b4e27b8 (patch) | |
tree | 3e128f23f3098cfaf6d15aa8d8950074f96e5f13 /config/target.in | |
parent | f290ad24173549c46ff070df86335aebc50b1bde (diff) | |
download | crosstool-ng-d978290f39196e7c2c72a154f32681386b4e27b8.tar.gz crosstool-ng-d978290f39196e7c2c72a154f32681386b4e27b8.tar.bz2 crosstool-ng-d978290f39196e7c2c72a154f32681386b4e27b8.zip |
Set --with-cpu-{32,64} for multilib builds
GLIBC 2.31 needs --with-cpu=ultrasparc for both 32/64-bits now, and
--with-cpu only sets the CPU model for the "primary" bitness.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config/target.in')
-rw-r--r-- | config/target.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/target.in b/config/target.in index 8549c5b8..995457a0 100644 --- a/config/target.in +++ b/config/target.in @@ -236,6 +236,11 @@ config ARCH_64 endchoice +# Whether this architecture supports passing --with-{cpu,arch,tune}-{32,64}= +# to GCC configure. +config ARCH_SUPPORTS_WITH_32_64 + bool + #-------------------------------------- comment "Target optimisations" |