aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/mips/init-first.c
diff options
context:
space:
mode:
authorRafael Ávila de Espíndola <rafael@espindo.la>2018-12-10 21:27:54 +0000
committerJoseph Myers <joseph@codesourcery.com>2018-12-10 21:27:54 +0000
commitf9ba9eb821c96ae41038460ee1fcd42308e074f2 (patch)
treeaef1c7d7f5afed635afd425dad005f77a1239e9d /sysdeps/unix/sysv/linux/mips/init-first.c
parent8d20a2f414fa52aceef8a0e3675415df54a840db (diff)
downloadglibc-f9ba9eb821c96ae41038460ee1fcd42308e074f2.tar
glibc-f9ba9eb821c96ae41038460ee1fcd42308e074f2.tar.gz
glibc-f9ba9eb821c96ae41038460ee1fcd42308e074f2.tar.bz2
glibc-f9ba9eb821c96ae41038460ee1fcd42308e074f2.zip
Enable VDSO for static linking on mips
I have tested that this builds and the resulting program still work. This was tested on gcc23.fsffrance.org, and for some reason the vdso there seems unused even when using shared libraries. [BZ #19767] * sysdeps/unix/sysv/linux/mips/init-first.c: Remove #ifdef SHARED. * sysdeps/unix/sysv/linux/mips/libc-vdso.h: Remove #ifdef SHARED. * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h: Define ALWAYS_USE_VSYSCALL. * sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h: Define ALWAYS_USE_VSYSCALL. * sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h: Define ALWAYS_USE_VSYSCALL.
Diffstat (limited to 'sysdeps/unix/sysv/linux/mips/init-first.c')
-rw-r--r--sysdeps/unix/sysv/linux/mips/init-first.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/init-first.c b/sysdeps/unix/sysv/linux/mips/init-first.c
index 0cf8279c73..2e04a6b050 100644
--- a/sysdeps/unix/sysv/linux/mips/init-first.c
+++ b/sysdeps/unix/sysv/linux/mips/init-first.c
@@ -17,9 +17,8 @@
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
-#ifdef SHARED
-# include <dl-vdso.h>
-# include <libc-vdso.h>
+#include <dl-vdso.h>
+#include <libc-vdso.h>
int (*VDSO_SYMBOL(gettimeofday)) (struct timeval *, void *) attribute_hidden;
int (*VDSO_SYMBOL(clock_gettime)) (clockid_t, struct timespec *);
@@ -38,7 +37,6 @@ _libc_vdso_platform_setup (void)
VDSO_SYMBOL (clock_gettime) = p;
}
-# define VDSO_SETUP _libc_vdso_platform_setup
-#endif
+#define VDSO_SETUP _libc_vdso_platform_setup
#include <csu/init-first.c>