forked from pool/glibc
Andreas Schwab
826ad7dd9f
- ppc64le-profiling.patch: fix profiling for ppc64le (bnc#889601, BZ #17213) - s390-revert-abi-change.patch: replace with upstream patch, switches default symbol version back to old version (bnc#887228) OBS-URL: https://build.opensuse.org/request/show/243561 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=378
24 lines
760 B
Diff
24 lines
760 B
Diff
2013-07-29 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
|
|
|
|
[BZ #17213]
|
|
* sysdeps/powerpc/powerpc64/entry.h: Fix TEXT_START definition for
|
|
powerpc64le.
|
|
|
|
Index: glibc-2.19/sysdeps/powerpc/powerpc64/entry.h
|
|
===================================================================
|
|
--- glibc-2.19.orig/sysdeps/powerpc/powerpc64/entry.h
|
|
+++ glibc-2.19/sysdeps/powerpc/powerpc64/entry.h
|
|
@@ -23,6 +23,7 @@ extern void _start (void);
|
|
|
|
#define ENTRY_POINT _start
|
|
|
|
+#if _CALL_ELF != 2
|
|
/* We have to provide a special declaration. */
|
|
#define ENTRY_POINT_DECL(class) class void _start (void);
|
|
|
|
@@ -33,3 +34,4 @@ extern void _start (void);
|
|
#define TEXT_START \
|
|
({ extern unsigned long int _start_as_data[] asm ("_start"); \
|
|
_start_as_data[0]; })
|
|
+#endif
|