From 838fd641a6ffb7e4734321de14385bece3e4506b Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Fri, 15 Nov 2019 19:47:12 +0000 Subject: m68k: add musl support Add the dynamic linker name and fix a type name to use the public name instead of the glibc internal name. gcc/ChangeLog: 2019-11-15 Szabolcs Nagy * config/m68k/linux.h (MUSL_DYNAMIC_LINKER): Define. libgcc/ChangeLog: 2019-11-15 Szabolcs Nagy * config/m68k/linux-unwind.h (struct uw_ucontext): Use sigset_t instead of __sigset_t. From-SVN: r278312 --- gcc/ChangeLog | 4 ++++ gcc/config/m68k/linux.h | 3 +++ 2 files changed, 7 insertions(+) (limited to 'gcc') diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e5b735e..ef62b5d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2019-11-15 Szabolcs Nagy + + * config/m68k/linux.h (MUSL_DYNAMIC_LINKER): Define. + 2019-11-15 Nick Clifton Szabolcs Nagy diff --git a/gcc/config/m68k/linux.h b/gcc/config/m68k/linux.h index ebdf028..beef554 100644 --- a/gcc/config/m68k/linux.h +++ b/gcc/config/m68k/linux.h @@ -73,6 +73,9 @@ along with GCC; see the file COPYING3. If not see #define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1" +#undef MUSL_DYNAMIC_LINKER +#define MUSL_DYNAMIC_LINKER "/lib/ld-musl-m68k.so.1" + #undef LINK_SPEC #define LINK_SPEC "-m m68kelf %{shared} \ %{!shared: \ -- cgit v1.1