diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2020-09-02 09:45:17 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2020-09-02 09:45:17 +0200 |
commit | e80384786d7b7f895c97f2447d4b91af8eb5f0f4 (patch) | |
tree | c5f0201763ed558e4ebf8b394566cd9495aa773f /libc/misc | |
parent | 7b504fe20cb4693db8a6c7c31303466966cb4088 (diff) |
Revert "Fix static linking with GCC-10"
This reverts commit 5b58a1ebd89a4f05778441814e81817c82193fa3.
This breaks all static builds earlier to gcc 10 :(
Bad testing on my side.
Diffstat (limited to 'libc/misc')
-rw-r--r-- | libc/misc/elf/dl-support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/elf/dl-support.c b/libc/misc/elf/dl-support.c index eaf08f5bb..87cd1bb72 100644 --- a/libc/misc/elf/dl-support.c +++ b/libc/misc/elf/dl-support.c @@ -29,7 +29,7 @@ void (*_dl_init_static_tls) (struct link_map *) = &_dl_nothread_init_static_tls; ElfW(Phdr) *_dl_phdr; size_t _dl_phnum; -extern size_t _dl_pagesize; +size_t _dl_pagesize; void internal_function _dl_aux_init (ElfW(auxv_t) *av); void internal_function _dl_aux_init (ElfW(auxv_t) *av) |