diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2019-05-29 18:48:38 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2019-08-05 16:01:24 -0300 |
commit | 27a0914e4586b06375b20731fa6515fe30334373 (patch) | |
tree | d95d41be588110c52dc49d7c0cce6c147538268f /sysdeps/unix/sysv/linux/riscv/init-first.c | |
parent | 503fc587f34a39e3fa12e5ff0e0b37369b436df6 (diff) | |
download | glibc-27a0914e4586b06375b20731fa6515fe30334373.tar glibc-27a0914e4586b06375b20731fa6515fe30334373.tar.gz glibc-27a0914e4586b06375b20731fa6515fe30334373.tar.bz2 glibc-27a0914e4586b06375b20731fa6515fe30334373.zip |
riscv: Enable VDSO for static linking
Checked on riscv64-linux-gnu-rv64imafdc-lp64d qemu system with
some static tests.
[BZ #19767]
* sysdeps/unix/sysv/linux/riscv/init-first.c: Remove #ifdef SHARED.
* sysdeps/unix/sysv/linux/riscv/libc-vdso.h: Likewise.
* sysdeps/unix/sysv/linux/riscv/sysdep.h (ALWAYS_USE_VSYSCALL):
Define.
Diffstat (limited to 'sysdeps/unix/sysv/linux/riscv/init-first.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/riscv/init-first.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/riscv/init-first.c b/sysdeps/unix/sysv/linux/riscv/init-first.c index 8134c79695..98a8ce33ad 100644 --- a/sysdeps/unix/sysv/linux/riscv/init-first.c +++ b/sysdeps/unix/sysv/linux/riscv/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> long int (*VDSO_SYMBOL (getcpu)) (unsigned int *, unsigned int *, void *) attribute_hidden; @@ -52,7 +51,6 @@ _libc_vdso_platform_setup (void) VDSO_SYMBOL (clock_getres) = p; } -# define VDSO_SETUP _libc_vdso_platform_setup -#endif +#define VDSO_SETUP _libc_vdso_platform_setup #include <csu/init-first.c> |