forked from pool/newlib
* remove i?86-pc-linux-gnu support * remove decstation & sunos support * remove phoenix OS support * remove unused members from struct _reent (see also --enable-newlib-reent-binary-compat) * build system internals heavily rewritten & updated * make arm jmp_buf size and alignment ABI-conformant * fixed bug in arm setjmp/longjmp to preserve floating-point register values * add --enable-newlib-reent-thread-local configuration option * add --enable-newlib-reent-binary-compat configuration option * add 64-bit powerpc setjmp/longjmp support * use global stdio streams for all configurations * use global atexit data for all configurations * vectorized math routines added for amdgcn platform * nvptx: remove newlib ELIX level 1 restriction - Already in v4.2.0 * remove use of --cygnus option for automake * rename configure.in files to configure.ac * enable automake silent rules * import gdtoa from OpenBSD * update to Unicode 14.0 * ignore _FORTIFY_SOURCE when building newlib * fixes to ldtoa * add clock support to nvptx port * various pthread POSIX APIs added * added implementatio for sig2str/str2sig * strtod/strtof to set errno to ERANGE consistently for underflow * fixed rounding issue with sqrt/sqrtf OBS-URL: https://build.opensuse.org/package/show/devel:gcc/newlib?expand=0&rev=30
25 lines
962 B
Diff
25 lines
962 B
Diff
Index: newlib-2.1.0/libgloss/epiphany/Makefile.in
|
|
===================================================================
|
|
--- newlib-2.1.0.orig/libgloss/epiphany/Makefile.in
|
|
+++ newlib-2.1.0/libgloss/epiphany/Makefile.in
|
|
@@ -184,7 +184,7 @@ distclean maintainer-clean realclean: cl
|
|
install:
|
|
@for outputs in ${OUTPUTS}; do\
|
|
mkdir -p $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}; \
|
|
- $(INSTALL_PROGRAM) $${outputs} $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}; \
|
|
+ $(INSTALL_DATA) $${outputs} $(DESTDIR)$(tooldir)/lib${MULTISUBDIR}; \
|
|
done
|
|
info:
|
|
install-info:
|
|
--- newlib-4.3.0.20230120/libgloss/epiphany/crt0.S.orig 2023-03-08 13:57:15.671910169 +0100
|
|
+++ newlib-4.3.0.20230120/libgloss/epiphany/crt0.S 2023-03-08 13:57:27.135910057 +0100
|
|
@@ -121,7 +121,7 @@
|
|
#error "not implemented"
|
|
#else /* !__STRUCT_ALIGN_64__ */
|
|
str r1, [r2, 0] ; __atexit = &__atexit0
|
|
- movr r0, 1
|
|
+ mov r0, 1
|
|
str r0, [r1, 4] ; __atexit0._ind = 1
|
|
mov r0,%low(fini)
|
|
movt r0,%high(fini)
|