修订版 | cef9840613e4f8fcf777df0ac10dfcdd7cefb8f5 (tree) |
---|---|
时间 | 2018-03-02 03:52:19 |
作者 | Waldemar Brodkorb <wbx@ucli...> |
Commiter | Waldemar Brodkorb |
fix issue with LDSO_GNU_HASH_SUPPORT
Under Fedora 27 there is a problem with the existing ld check.
Binutils ld segfaults. Add a glibc compat macro to complete
the build on Fedora.
Signed-off-by: Sven Anders <anders@anduras.de>
@@ -195,8 +195,9 @@ check_as=$(shell \ | ||
195 | 195 | if $(CC) -Wa,$(1) -Wa,-Z -c -o /dev/null -xassembler /dev/null > /dev/null 2>&1; \ |
196 | 196 | then echo "-Wa,$(1)"; fi) |
197 | 197 | check_ld=$(shell \ |
198 | - if $(CC) $(LDFLAG-fuse-ld) $(CFLAG_-Wl--no-warn-mismatch) -Wl,$(1) $(CFLAG_-nostdlib) -o /dev/null -Wl,-b,binary /dev/null > /dev/null 2>&1; \ | |
199 | - then echo "$(1)"; fi) | |
198 | + tf="/tmp/clducl$$$$.c"; echo "int _start(){return 0;}int main(){return 0;}" >$$tf; \ | |
199 | + if $(CC) $(LDFLAG-fuse-ld) $(CFLAG_-Wl--no-warn-mismatch) -Wl,$(1) $(CFLAG_-nostdlib) -o /dev/null $$tf > /dev/null 2>&1; \ | |
200 | + then echo "$(1)"; fi; rm -f $$tf ) | |
200 | 201 | |
201 | 202 | # Use variable indirection here so that we can have variable |
202 | 203 | # names with fun chars in them like equal signs |
@@ -139,6 +139,9 @@ | ||
139 | 139 | # define __GNUC_PREREQ(maj, min) 0 |
140 | 140 | #endif |
141 | 141 | |
142 | +/* Whether to use feature set F. */ | |
143 | +#define __GLIBC_USE(F) __GLIBC_USE_ ## F | |
144 | + | |
142 | 145 | /* _DEFAULT_SOURCE is equivalent to defining _BSD_SOURCE and _SVID_SOURCE |
143 | 146 | * and vice versa. */ |
144 | 147 | #ifdef _DEFAULT_SOURCE |