diff options
Diffstat (limited to 'sysdeps/s390')
-rw-r--r-- | sysdeps/s390/Makefile | 4 | ||||
-rw-r--r-- | sysdeps/s390/rtld-global-offsets.sym | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/sysdeps/s390/Makefile b/sysdeps/s390/Makefile index fdc6ee50dc..42978dc8b2 100644 --- a/sysdeps/s390/Makefile +++ b/sysdeps/s390/Makefile @@ -3,3 +3,7 @@ ifeq (yes,$(build-shared)) sysdep_routines += v1-longjmp v1-sigjmp endif endif + +ifeq ($(subdir),csu) +gen-as-const-headers += rtld-global-offsets.sym +endif diff --git a/sysdeps/s390/rtld-global-offsets.sym b/sysdeps/s390/rtld-global-offsets.sym new file mode 100644 index 0000000000..ff4e97f2a6 --- /dev/null +++ b/sysdeps/s390/rtld-global-offsets.sym @@ -0,0 +1,7 @@ +#define SHARED 1 + +#include <ldsodefs.h> + +#define rtld_global_ro_offsetof(mem) offsetof (struct rtld_global_ro, mem) + +RTLD_GLOBAL_RO_DL_HWCAP_OFFSET rtld_global_ro_offsetof (_dl_hwcap) |