diff options
author | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2017-06-28 16:02:42 +0000 |
---|---|---|
committer | Szabolcs Nagy <nsz@gcc.gnu.org> | 2017-06-28 16:02:42 +0000 |
commit | ad669a1af4009b2d1f667716874758d91282869b (patch) | |
tree | 7eb1505fc5301b0499a19fe2c95393cd488cdf92 /gcc/config.gcc | |
parent | 0ddc0ebc887b384fcb847743400be762b1a26f6d (diff) | |
download | gcc-ad669a1af4009b2d1f667716874758d91282869b.zip gcc-ad669a1af4009b2d1f667716874758d91282869b.tar.gz gcc-ad669a1af4009b2d1f667716874758d91282869b.tar.bz2 |
multiarch support for non-glibc linux systems
Current multiarch directory name is always *-linux-gnu* on linux,
this patch configures different names for uclibc and musl targets.
2017-06-28 Szabolcs Nagy <szabolcs.nagy@arm.com>
* config.gcc (*-linux-musl*): Add t-musl tmake_file.
(*-linux-uclibc*): Add t-uclibc tmake_file.
* config/t-musl: New.
* config/t-uclibc: New.
From-SVN: r249745
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index a97bbc8..c5ae8ca 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -3112,6 +3112,16 @@ powerpc*-*-* | rs6000-*-*) tm_file="${tm_file} ${cpu_type}/option-defaults.h" esac +# non-glibc systems +case ${target} in +*-linux-musl*) + tmake_file="${tmake_file} t-musl" + ;; +*-linux-uclibc*) + tmake_file="${tmake_file} t-uclibc" + ;; +esac + # Build mkoffload tool case ${target} in *-intelmic-* | *-intelmicemul-*) |