diff options
author | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2019-11-15 19:47:12 +0000 |
---|---|---|
committer | Szabolcs Nagy <nsz@gcc.gnu.org> | 2019-11-15 19:47:12 +0000 |
commit | 838fd641a6ffb7e4734321de14385bece3e4506b (patch) | |
tree | 49f21671956e31f0fcb3d8a84b60d8d86eb8aaf5 /libgcc/config/m68k | |
parent | 97cc11871e39888bfca4ed4bf09fa09fe0916266 (diff) | |
download | gcc-838fd641a6ffb7e4734321de14385bece3e4506b.zip gcc-838fd641a6ffb7e4734321de14385bece3e4506b.tar.gz gcc-838fd641a6ffb7e4734321de14385bece3e4506b.tar.bz2 |
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 <szabolcs.nagy@arm.com>
* config/m68k/linux.h (MUSL_DYNAMIC_LINKER): Define.
libgcc/ChangeLog:
2019-11-15 Szabolcs Nagy <szabolcs.nagy@arm.com>
* config/m68k/linux-unwind.h (struct uw_ucontext): Use sigset_t instead
of __sigset_t.
From-SVN: r278312
Diffstat (limited to 'libgcc/config/m68k')
-rw-r--r-- | libgcc/config/m68k/linux-unwind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgcc/config/m68k/linux-unwind.h b/libgcc/config/m68k/linux-unwind.h index fbe0d47..57c354e 100644 --- a/libgcc/config/m68k/linux-unwind.h +++ b/libgcc/config/m68k/linux-unwind.h @@ -37,7 +37,7 @@ struct uw_ucontext { stack_t uc_stack; mcontext_t uc_mcontext; unsigned long uc_filler[80]; - __sigset_t uc_sigmask; + sigset_t uc_sigmask; }; #define MD_FALLBACK_FRAME_STATE_FOR m68k_fallback_frame_state |