diff options
author | Chen Tao <t.clydechen@gmail.com> | 2022-06-12 19:42:12 +0900 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-06-28 20:53:01 +1200 |
commit | c368525d5b19183b7918d54b032a0d9f5a3c8e46 (patch) | |
tree | f78e7dcb32f4aa456ad8512cdd4f94666ab336ef /config/cc | |
parent | 883ecbebb642c88a11a78e8f2e8c30ad72813b9a (diff) | |
download | crosstool-ng-c368525d5b19183b7918d54b032a0d9f5a3c8e46.tar.gz crosstool-ng-c368525d5b19183b7918d54b032a0d9f5a3c8e46.tar.bz2 crosstool-ng-c368525d5b19183b7918d54b032a0d9f5a3c8e46.zip |
kconfig: modify rules for multilibs configuration
fix conflict options when compiling multilibs on ARM based architecture.
"--with-arch", "--with-cpu", "--with-fpu", "--with-float", and
"--with-mode" should not be configured with "--with-multilib-list=list"
when configuring multilibs.
Signed-off-by: Chen Tao <t.clydechen@gmail.com>
Diffstat (limited to 'config/cc')
-rw-r--r-- | config/cc/gcc.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/cc/gcc.in b/config/cc/gcc.in index 037291fe..ea7103b8 100644 --- a/config/cc/gcc.in +++ b/config/cc/gcc.in @@ -81,6 +81,7 @@ config CC_GCC_MULTILIB_LIST string "List of multilib variants" depends on MULTILIB default "m2,m2e,m4,m4-single,m4-single-only,m2a,m2a-single" if GCC_11_or_later && ARCH_SH + default "aprofile,rmprofile" if ARCH_ARM && ARCH_32 help Architecture-specific option of expanding or restricting the list of the multilib variants to be built. Refer to GCC installation manual |