Checking patch scripts/build-many-glibcs.py... Hunk #1 succeeded at 271 (offset 30 lines). Checking patch sysdeps/m68k/coldfire/atomic-machine.h... error: sysdeps/m68k/coldfire/atomic-machine.h: No such file or directory Checking patch sysdeps/m68k/coldfire/fpu/fraiseexcpt.c... error: while searching for: /* Raise given exceptions. Copyright (C) 2006-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library. If not, see . */ #include #include #include int __feraiseexcept (int excepts) { /* Raise exceptions represented by EXCEPTS. But we must raise only one signal at a time. It is important that if the overflow/underflow exception and the divide by zero exception are given at the same time, the overflow/underflow exception follows the divide by zero exception. The Coldfire FPU allows an exception to be raised by asserting the associated EXC bit and then executing an arbitrary arithmetic instruction. fmove.l is classified as an arithmetic instruction and suffices for this purpose. We therefore raise an exception by setting both the EXC and AEXC bit associated with the exception (the former being 6 bits to the left of the latter) and then loading the longword at (%sp) into an FP register. */ inline void raise_one_exception (int mask) { if (excepts & mask) { int fpsr; double unused; asm volatile ("fmove%.l %/fpsr,%0" : "=d" (fpsr)); fpsr |= (mask << 6) | mask; asm volatile ("fmove%.l %0,%/fpsr" :: "d" (fpsr)); asm volatile ("fmove%.l (%%sp),%0" : "=f" (unused)); } } raise_one_exception (FE_INVALID); raise_one_exception (FE_DIVBYZERO); raise_one_exception (FE_OVERFLOW); raise_one_exception (FE_UNDERFLOW); raise_one_exception (FE_INEXACT); /* Success. */ return 0; } libm_hidden_def (__feraiseexcept) weak_alias (__feraiseexcept, feraiseexcept) libm_hidden_weak (feraiseexcept) error: patch failed: sysdeps/m68k/coldfire/fpu/fraiseexcpt.c:1 error: sysdeps/m68k/coldfire/fpu/fraiseexcpt.c: patch does not apply Checking patch sysdeps/m68k/coldfire/fpu/math-use-builtins-sqrt.h... Checking patch sysdeps/m68k/coldfire/fpu/s_fabs.c... error: while searching for: /* Copyright (C) 2006-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library. If not, see . */ #include double __fabs (double x) { asm ("fdabs.d %1,%0" : "=f" (x) : "fm" (x)); return x; } libm_alias_double (__fabs, fabs) error: patch failed: sysdeps/m68k/coldfire/fpu/s_fabs.c:1 error: sysdeps/m68k/coldfire/fpu/s_fabs.c: patch does not apply Checking patch sysdeps/m68k/coldfire/fpu/s_fabsf.c... error: while searching for: /* Copyright (C) 2006-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library. If not, see . */ #include float __fabsf (float x) { asm ("fsabs.s %1,%0" : "=f" (x) : "dm" (x)); return x; } libm_alias_float (__fabs, fabs) error: patch failed: sysdeps/m68k/coldfire/fpu/s_fabsf.c:1 error: sysdeps/m68k/coldfire/fpu/s_fabsf.c: patch does not apply Checking patch sysdeps/m68k/coldfire/fpu/s_lrint.c... error: while searching for: /* Copyright (C) 2006-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library. If not, see . */ #include long int __lrint (double x) { long int result; asm ("fmove.l %1,%0" : "=dm" (result) : "f" (x)); return result; } libm_alias_double (__lrint, lrint) error: patch failed: sysdeps/m68k/coldfire/fpu/s_lrint.c:1 error: sysdeps/m68k/coldfire/fpu/s_lrint.c: patch does not apply Checking patch sysdeps/m68k/coldfire/fpu/s_lrintf.c... error: while searching for: /* Copyright (C) 2006-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library. If not, see . */ #include long int __lrintf (float x) { long int result; asm ("fmove.l %1,%0" : "=dm" (result) : "f" (x)); return result; } libm_alias_float (__lrint, lrint) error: patch failed: sysdeps/m68k/coldfire/fpu/s_lrintf.c:1 error: sysdeps/m68k/coldfire/fpu/s_lrintf.c: patch does not apply Checking patch sysdeps/m68k/coldfire/fpu/s_rint.c... error: while searching for: /* Copyright (C) 2006-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library. If not, see . */ #define NO_MATH_REDIRECT #include double __rint (double x) { asm ("fint.d %1,%0" : "=f" (x) : "fm" (x)); return x; } libm_alias_double (__rint, rint) error: patch failed: sysdeps/m68k/coldfire/fpu/s_rint.c:1 error: sysdeps/m68k/coldfire/fpu/s_rint.c: patch does not apply Checking patch sysdeps/m68k/coldfire/fpu/s_rintf.c... error: while searching for: /* Copyright (C) 2006-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library. If not, see . */ #define NO_MATH_REDIRECT #include float __rintf (float x) { double result; asm ("fint.s %1,%0" : "=f" (result) : "dm" (x)); return (float) result; } libm_alias_float (__rint, rint) error: patch failed: sysdeps/m68k/coldfire/fpu/s_rintf.c:1 error: sysdeps/m68k/coldfire/fpu/s_rintf.c: patch does not apply Checking patch sysdeps/m68k/coldfire/ldbl-classify-compat.h... Checking patch sysdeps/m68k/coldfire/nofpu/Implies... Checking patch sysdeps/m68k/coldfire/nofpu/sfp-machine.h... Checking patch sysdeps/m68k/coldfire/sysdep.h... error: while searching for: /* Assembler macros for Coldfire. Copyright (C) 1998-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library. If not, see . */ #include #ifdef __ASSEMBLER__ /* Perform operation OP with PC-relative SRC as the first operand and DST as the second. TMP is available as a temporary if needed. */ # define PCREL_OP(OP, SRC, DST, TMP) \ move.l &SRC - ., TMP; OP (-8, %pc, TMP), DST /* Load the address of the GOT into register R. */ # define LOAD_GOT(R) \ move.l &_GLOBAL_OFFSET_TABLE_@GOTPC, R; \ lea (-6, %pc, R), R #else /* As above, but PC is the spelling of the PC register. We need this so that the macro can be used in both normal and extended asms. */ # define PCREL_OP(OP, SRC, DST, TMP, PC) \ "move.l #" SRC " - ., " TMP "\n\t" OP " (-8, " PC ", " TMP "), " DST #endif /* __ASSEMBLER__ */ error: patch failed: sysdeps/m68k/coldfire/sysdep.h:1 error: sysdeps/m68k/coldfire/sysdep.h: patch does not apply Checking patch sysdeps/m68k/preconfigure... Checking patch sysdeps/m68k/preconfigure.ac... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/atomic-machine.h... error: sysdeps/unix/sysv/linux/m68k/coldfire/atomic-machine.h: No such file or directory Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist... error: while searching for: GLIBC_2.10 __cxa_at_quick_exit F GLIBC_2.10 __posix_getopt F GLIBC_2.10 accept4 F GLIBC_2.10 endsgent F GLIBC_2.10 fallocate F GLIBC_2.10 fgetsgent F GLIBC_2.10 fgetsgent_r F GLIBC_2.10 getsgent F GLIBC_2.10 getsgent_r F GLIBC_2.10 getsgnam F GLIBC_2.10 getsgnam_r F GLIBC_2.10 malloc_info F GLIBC_2.10 preadv F GLIBC_2.10 preadv64 F GLIBC_2.10 psiginfo F GLIBC_2.10 putsgent F GLIBC_2.10 pwritev F GLIBC_2.10 pwritev64 F GLIBC_2.10 quick_exit F GLIBC_2.10 register_printf_modifier F GLIBC_2.10 register_printf_specifier F GLIBC_2.10 register_printf_type F GLIBC_2.10 setsgent F GLIBC_2.10 sgetsgent F GLIBC_2.10 sgetsgent_r F GLIBC_2.11 __longjmp_chk F GLIBC_2.11 execvpe F GLIBC_2.11 fallocate64 F GLIBC_2.11 mkostemps F GLIBC_2.11 mkostemps64 F GLIBC_2.11 mkstemps F GLIBC_2.11 mkstemps64 F GLIBC_2.11 pthread_sigqueue F GLIBC_2.12 __m68k_read_tp F GLIBC_2.12 _sys_errlist D 0x21c GLIBC_2.12 _sys_nerr D 0x4 GLIBC_2.12 ntp_gettimex F GLIBC_2.12 pthread_getname_np F GLIBC_2.12 pthread_mutex_consistent F GLIBC_2.12 pthread_mutexattr_getrobust F GLIBC_2.12 pthread_mutexattr_setrobust F GLIBC_2.12 pthread_setname_np F GLIBC_2.12 recvmmsg F GLIBC_2.12 sys_errlist D 0x21c GLIBC_2.12 sys_nerr D 0x4 GLIBC_2.13 fanotify_init F GLIBC_2.13 fanotify_mark F GLIBC_2.13 prlimit F GLIBC_2.13 prlimit64 F GLIBC_2.14 clock_adjtime F GLIBC_2.14 name_to_handle_at F GLIBC_2.14 open_by_handle_at F GLIBC_2.14 sendmmsg F GLIBC_2.14 setns F GLIBC_2.14 syncfs F GLIBC_2.15 __fdelt_chk F GLIBC_2.15 __fdelt_warn F GLIBC_2.15 posix_spawn F GLIBC_2.15 posix_spawnp F GLIBC_2.15 process_vm_readv F GLIBC_2.15 process_vm_writev F GLIBC_2.15 scandirat F GLIBC_2.15 scandirat64 F GLIBC_2.16 __getauxval F GLIBC_2.16 __poll_chk F GLIBC_2.16 __ppoll_chk F GLIBC_2.16 aligned_alloc F GLIBC_2.16 c16rtomb F GLIBC_2.16 c32rtomb F GLIBC_2.16 getauxval F GLIBC_2.16 mbrtoc16 F GLIBC_2.16 mbrtoc32 F GLIBC_2.16 timespec_get F GLIBC_2.17 clock_getcpuclockid F GLIBC_2.17 clock_getres F GLIBC_2.17 clock_gettime F GLIBC_2.17 clock_nanosleep F GLIBC_2.17 clock_settime F GLIBC_2.17 secure_getenv F GLIBC_2.18 __cxa_thread_atexit_impl F GLIBC_2.18 pthread_getattr_default_np F GLIBC_2.18 pthread_setattr_default_np F GLIBC_2.22 fmemopen F GLIBC_2.23 fts64_children F GLIBC_2.23 fts64_close F GLIBC_2.23 fts64_open F GLIBC_2.23 fts64_read F GLIBC_2.23 fts64_set F GLIBC_2.24 quick_exit F GLIBC_2.25 __explicit_bzero_chk F GLIBC_2.25 explicit_bzero F GLIBC_2.25 getentropy F GLIBC_2.25 getrandom F GLIBC_2.25 strfromd F GLIBC_2.25 strfromf F GLIBC_2.25 strfroml F GLIBC_2.26 preadv2 F GLIBC_2.26 preadv64v2 F GLIBC_2.26 pwritev2 F GLIBC_2.26 pwritev64v2 F GLIBC_2.26 reallocarray F GLIBC_2.27 copy_file_range F GLIBC_2.27 glob F GLIBC_2.27 glob64 F GLIBC_2.27 memfd_create F GLIBC_2.27 mlock2 F GLIBC_2.27 pkey_alloc F GLIBC_2.27 pkey_free F GLIBC_2.27 pkey_get F GLIBC_2.27 pkey_mprotect F GLIBC_2.27 pkey_set F GLIBC_2.27 strfromf32 F GLIBC_2.27 strfromf32x F GLIBC_2.27 strfromf64 F GLIBC_2.27 strtof32 F GLIBC_2.27 strtof32_l F GLIBC_2.27 strtof32x F GLIBC_2.27 strtof32x_l F GLIBC_2.27 strtof64 F GLIBC_2.27 strtof64_l F GLIBC_2.27 wcstof32 F GLIBC_2.27 wcstof32_l F GLIBC_2.27 wcstof32x F GLIBC_2.27 wcstof32x_l F GLIBC_2.27 wcstof64 F GLIBC_2.27 wcstof64_l F GLIBC_2.28 call_once F GLIBC_2.28 cnd_broadcast F GLIBC_2.28 cnd_destroy F GLIBC_2.28 cnd_init F GLIBC_2.28 cnd_signal F GLIBC_2.28 cnd_timedwait F GLIBC_2.28 cnd_wait F GLIBC_2.28 fcntl F GLIBC_2.28 fcntl64 F GLIBC_2.28 mtx_destroy F GLIBC_2.28 mtx_init F GLIBC_2.28 mtx_lock F GLIBC_2.28 mtx_timedlock F GLIBC_2.28 mtx_trylock F GLIBC_2.28 mtx_unlock F GLIBC_2.28 renameat2 F GLIBC_2.28 statx F GLIBC_2.28 thrd_create F GLIBC_2.28 thrd_current F GLIBC_2.28 thrd_detach F GLIBC_2.28 thrd_equal F GLIBC_2.28 thrd_exit F GLIBC_2.28 thrd_join F GLIBC_2.28 thrd_sleep F GLIBC_2.28 thrd_yield F GLIBC_2.28 tss_create F GLIBC_2.28 tss_delete F GLIBC_2.28 tss_get F GLIBC_2.28 tss_set F GLIBC_2.29 getcpu F GLIBC_2.29 posix_spawn_file_actions_addchdir_np F GLIBC_2.29 posix_spawn_file_actions_addfchdir_np F GLIBC_2.30 getdents64 F GLIBC_2.30 error: patch failed: sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist:1 error: sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: patch does not apply Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/libc_malloc_debug.abilist... error: while searching for: GLIBC_2.10 malloc_info F GLIBC_2.16 aligned_alloc F GLIBC_2.33 mallinfo2 F GLIBC_2.4 __free_hook D 0x4 GLIBC_2.4 __malloc_hook D 0x4 GLIBC_2.4 __memalign_hook D 0x4 GLIBC_2.4 __realloc_hook D 0x4 GLIBC_2.4 calloc F GLIBC_2.4 free F GLIBC_2.4 mallinfo F GLIBC_2.4 malloc F GLIBC_2.4 malloc_get_state F GLIBC_2.4 malloc_set_state F GLIBC_2.4 malloc_stats F GLIBC_2.4 malloc_trim F GLIBC_2.4 malloc_usable_size F GLIBC_2.4 mallopt F GLIBC_2.4 mcheck F GLIBC_2.4 mcheck_check_all F GLIBC_2.4 mcheck_pedantic F GLIBC_2.4 memalign F GLIBC_2.4 mprobe F GLIBC_2.4 mtrace F GLIBC_2.4 muntrace F GLIBC_2.4 posix_memalign F GLIBC_2.4 pvalloc F GLIBC_2.4 realloc F GLIBC_2.4 valloc F error: patch failed: sysdeps/unix/sysv/linux/m68k/coldfire/libc_malloc_debug.abilist:1 error: sysdeps/unix/sysv/linux/m68k/coldfire/libc_malloc_debug.abilist: patch does not apply Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist... error: while searching for: GLIBC_2.15 __acos_finite F GLIBC_2.15 __acosf_finite F GLIBC_2.15 __acosh_finite F GLIBC_2.15 __acoshf_finite F GLIBC_2.15 __asin_finite F GLIBC_2.15 __asinf_finite F GLIBC_2.15 __atan2_finite F GLIBC_2.15 __atan2f_finite F GLIBC_2.15 __atanh_finite F GLIBC_2.15 __atanhf_finite F GLIBC_2.15 __cosh_finite F GLIBC_2.15 __coshf_finite F GLIBC_2.15 __exp10_finite F GLIBC_2.15 __exp10f_finite F GLIBC_2.15 __exp2_finite F GLIBC_2.15 __exp2f_finite F GLIBC_2.15 __exp_finite F GLIBC_2.15 __expf_finite F GLIBC_2.15 __fmod_finite F GLIBC_2.15 __fmodf_finite F GLIBC_2.15 __gamma_r_finite F GLIBC_2.15 __gammaf_r_finite F GLIBC_2.15 __hypot_finite F GLIBC_2.15 __hypotf_finite F GLIBC_2.15 __j0_finite F GLIBC_2.15 __j0f_finite F GLIBC_2.15 __j1_finite F GLIBC_2.15 __j1f_finite F GLIBC_2.15 __jn_finite F GLIBC_2.15 __jnf_finite F GLIBC_2.15 __lgamma_r_finite F GLIBC_2.15 __lgammaf_r_finite F GLIBC_2.15 __log10_finite F GLIBC_2.15 __log10f_finite F GLIBC_2.15 __log2_finite F GLIBC_2.15 __log2f_finite F GLIBC_2.15 __log_finite F GLIBC_2.15 __logf_finite F GLIBC_2.15 __pow_finite F GLIBC_2.15 __powf_finite F GLIBC_2.15 __remainder_finite F GLIBC_2.15 __remainderf_finite F GLIBC_2.15 __scalb_finite F GLIBC_2.15 __scalbf_finite F GLIBC_2.15 __sinh_finite F GLIBC_2.15 __sinhf_finite F GLIBC_2.15 __sqrt_finite F GLIBC_2.15 __sqrtf_finite F GLIBC_2.15 __y0_finite F GLIBC_2.15 __y0f_finite F GLIBC_2.15 __y1_finite F GLIBC_2.15 __y1f_finite F GLIBC_2.15 __yn_finite F GLIBC_2.15 __ynf_finite F GLIBC_2.18 __issignaling F GLIBC_2.18 __issignalingf F GLIBC_2.23 __signgam D 0x4 GLIBC_2.23 lgamma F GLIBC_2.23 lgammaf F GLIBC_2.23 lgammal F GLIBC_2.24 nextdown F GLIBC_2.24 nextdownf F GLIBC_2.24 nextdownl F GLIBC_2.24 nextup F GLIBC_2.24 nextupf F GLIBC_2.24 nextupl F GLIBC_2.25 __iseqsig F GLIBC_2.25 __iseqsigf F GLIBC_2.25 canonicalize F GLIBC_2.25 canonicalizef F GLIBC_2.25 canonicalizel F GLIBC_2.25 fegetmode F GLIBC_2.25 fesetexcept F GLIBC_2.25 fesetmode F GLIBC_2.25 fetestexceptflag F GLIBC_2.25 fmaxmag F GLIBC_2.25 fmaxmagf F GLIBC_2.25 fmaxmagl F GLIBC_2.25 fminmag F GLIBC_2.25 fminmagf F GLIBC_2.25 fminmagl F GLIBC_2.25 fromfp F GLIBC_2.25 fromfpf F GLIBC_2.25 fromfpl F GLIBC_2.25 fromfpx F GLIBC_2.25 fromfpxf F GLIBC_2.25 fromfpxl F GLIBC_2.25 getpayload F GLIBC_2.25 getpayloadf F GLIBC_2.25 getpayloadl F GLIBC_2.25 llogb F GLIBC_2.25 llogbf F GLIBC_2.25 llogbl F GLIBC_2.25 roundeven F GLIBC_2.25 roundevenf F GLIBC_2.25 roundevenl F GLIBC_2.25 setpayload F GLIBC_2.25 setpayloadf F GLIBC_2.25 setpayloadl F GLIBC_2.25 setpayloadsig F GLIBC_2.25 setpayloadsigf F GLIBC_2.25 setpayloadsigl F GLIBC_2.25 totalorder F GLIBC_2.25 totalorderf F GLIBC_2.25 totalorderl F GLIBC_2.25 totalordermag F GLIBC_2.25 totalordermagf F GLIBC_2.25 totalordermagl F GLIBC_2.25 ufromfp F GLIBC_2.25 ufromfpf F GLIBC_2.25 ufromfpl F GLIBC_2.25 ufromfpx F GLIBC_2.25 ufromfpxf F GLIBC_2.25 ufromfpxl F GLIBC_2.27 acosf32 F GLIBC_2.27 acosf32x F GLIBC_2.27 acosf64 F GLIBC_2.27 acoshf32 F GLIBC_2.27 acoshf32x F GLIBC_2.27 acoshf64 F GLIBC_2.27 asinf32 F GLIBC_2.27 asinf32x F GLIBC_2.27 asinf64 F GLIBC_2.27 asinhf32 F GLIBC_2.27 asinhf32x F GLIBC_2.27 asinhf64 F GLIBC_2.27 atan2f32 F GLIBC_2.27 atan2f32x F GLIBC_2.27 atan2f64 F GLIBC_2.27 atanf32 F GLIBC_2.27 atanf32x F GLIBC_2.27 atanf64 F GLIBC_2.27 atanhf32 F GLIBC_2.27 atanhf32x F GLIBC_2.27 atanhf64 F GLIBC_2.27 cabsf32 F GLIBC_2.27 cabsf32x F GLIBC_2.27 cabsf64 F GLIBC_2.27 cacosf32 F GLIBC_2.27 cacosf32x F GLIBC_2.27 cacosf64 F GLIBC_2.27 cacoshf32 F GLIBC_2.27 cacoshf32x F GLIBC_2.27 cacoshf64 F GLIBC_2.27 canonicalizef32 F GLIBC_2.27 canonicalizef32x F GLIBC_2.27 canonicalizef64 F GLIBC_2.27 cargf32 F GLIBC_2.27 cargf32x F GLIBC_2.27 cargf64 F GLIBC_2.27 casinf32 F GLIBC_2.27 casinf32x F GLIBC_2.27 casinf64 F GLIBC_2.27 casinhf32 F GLIBC_2.27 casinhf32x F GLIBC_2.27 casinhf64 F GLIBC_2.27 catanf32 F GLIBC_2.27 catanf32x F GLIBC_2.27 catanf64 F GLIBC_2.27 catanhf32 F GLIBC_2.27 catanhf32x F GLIBC_2.27 catanhf64 F GLIBC_2.27 cbrtf32 F GLIBC_2.27 cbrtf32x F GLIBC_2.27 cbrtf64 F GLIBC_2.27 cc error: patch failed: sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist:1 error: sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: patch does not apply Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/localplt.data... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions... Checking patch sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h... error: while searching for: /* Copyright (C) 2010-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library. If not, see . */ #ifndef _LINUX_M68K_COLDFIRE_SYSDEP_H #define _LINUX_M68K_COLDFIRE_SYSDEP_H 1 #include #include #include #define SYSCALL_ERROR_LOAD_GOT(reg) \ move.l &_GLOBAL_OFFSET_TABLE_@GOTPC, reg; \ lea (-6, %pc, reg), reg #endif error: patch failed: sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h:1 error: sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h: patch does not apply