diff options
author | Cooper Qu <cooper.qu@linux.alibaba.com> | 2021-07-16 16:05:39 +0800 |
---|---|---|
committer | Xianmiao Qu <xianmiao_qu@c-sky.com> | 2021-07-16 16:48:06 +0800 |
commit | 2f11ca2a3a3bea38a7c5bd63e777620a4887e649 (patch) | |
tree | b83d80736995d3f0aed335677095c8974972a8bb /gcc/config.gcc | |
parent | d6aa28bb93c6fc9042ee87ff7addac60647dbddb (diff) | |
download | gcc-2f11ca2a3a3bea38a7c5bd63e777620a4887e649.zip gcc-2f11ca2a3a3bea38a7c5bd63e777620a4887e649.tar.gz gcc-2f11ca2a3a3bea38a7c5bd63e777620a4887e649.tar.bz2 |
C-SKY: Use the common way to define MULTILIB_DIRNAMES.
C-SKY previously used a forked print-sysroot-suffix.sh and define
CSKY_MULTILIB_DIRNAMES to specify OS multilib directories. This
patch delete the forked print-sysroot-suffix.sh and define
MULTILIB_DIRNAMES to generate same directories.
gcc/
* config.gcc: Don't use forked print-sysroot-suffix.sh and
t-sysroot-suffix for C-SKY.
* config/csky/print-sysroot-suffix.sh: Delete.
* config/csky/t-csky-linux: Delete.
* config/csky/t-sysroot-suffix: Define MULTILIB_DIRNAMES
instead of CSKY_MULTILIB_DIRNAMES.
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index f3e94f7..93e2b32 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1568,11 +1568,6 @@ csky-*-*) tm_file="dbxelf.h elfos.h gnu-user.h linux.h glibc-stdint.h ${tm_file} csky/csky-linux-elf.h" tmake_file="${tmake_file} csky/t-csky csky/t-csky-linux" - if test "x${enable_multilib}" = xyes ; then - tm_file="$tm_file ./sysroot-suffix.h" - tmake_file="${tmake_file} csky/t-sysroot-suffix" - fi - case ${target} in csky-*-linux-gnu*) tm_defines="$tm_defines DEFAULT_LIBC=LIBC_GLIBC" |