mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-10 05:03:06 +03:00
Revert "Allow glibc to be compiled without EXEC_PAGESIZE"
This reverts commit 49aa652db8
.
This is still being discussed.
This commit is contained in:
@@ -135,11 +135,7 @@ void *_dl_random;
|
|||||||
#include <dl-procruntime.c>
|
#include <dl-procruntime.c>
|
||||||
#include <dl-procinfo.c>
|
#include <dl-procinfo.c>
|
||||||
|
|
||||||
size_t _dl_pagesize
|
size_t _dl_pagesize = EXEC_PAGESIZE;
|
||||||
#ifdef EXEC_PAGESIZE
|
|
||||||
= EXEC_PAGESIZE
|
|
||||||
#endif
|
|
||||||
;
|
|
||||||
|
|
||||||
size_t _dl_minsigstacksize = CONSTANT_MINSIGSTKSZ;
|
size_t _dl_minsigstacksize = CONSTANT_MINSIGSTKSZ;
|
||||||
|
|
||||||
|
@@ -358,9 +358,7 @@ struct rtld_global_ro _rtld_global_ro attribute_relro =
|
|||||||
._dl_debug_fd = STDERR_FILENO,
|
._dl_debug_fd = STDERR_FILENO,
|
||||||
._dl_lazy = 1,
|
._dl_lazy = 1,
|
||||||
._dl_fpu_control = _FPU_DEFAULT,
|
._dl_fpu_control = _FPU_DEFAULT,
|
||||||
#ifdef EXEC_PAGESIZE
|
|
||||||
._dl_pagesize = EXEC_PAGESIZE,
|
._dl_pagesize = EXEC_PAGESIZE,
|
||||||
#endif
|
|
||||||
._dl_inhibit_cache = 0,
|
._dl_inhibit_cache = 0,
|
||||||
._dl_profile_output = "/var/tmp",
|
._dl_profile_output = "/var/tmp",
|
||||||
|
|
||||||
|
@@ -852,7 +852,7 @@ extern off64_t _IO_seekpos_unlocked (FILE *, off64_t, int)
|
|||||||
# define MAP_ANONYMOUS MAP_ANON
|
# define MAP_ANONYMOUS MAP_ANON
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
# if !defined(MAP_ANONYMOUS)
|
# if !defined(MAP_ANONYMOUS) || !defined(EXEC_PAGESIZE)
|
||||||
# undef _G_HAVE_MMAP
|
# undef _G_HAVE_MMAP
|
||||||
# define _G_HAVE_MMAP 0
|
# define _G_HAVE_MMAP 0
|
||||||
# endif
|
# endif
|
||||||
|
Reference in New Issue
Block a user