mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
* sysdeps/x86_64/dl-machine.h (elf_machine_rela) <R_X86_64_PC32>: Check for signed overflow, not unsigned. 2003-02-21 Jakub Jelinek <jakub@redhat.com>
11 lines
415 B
Makefile
11 lines
415 B
Makefile
ifeq ($(subdir),linuxthreads)
|
|
# gcc has /usr/lib{,64}/crti.o hardcoded in the specs file, because otherwise
|
|
# it would normally find {64,32}bit crt[in].o.
|
|
LDFLAGS-pthread.so += -specs=$(objpfx)specs
|
|
before-compile += $(objpfx)specs
|
|
generated += specs
|
|
$(objpfx)specs:
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -dumpspecs \
|
|
| sed 's,\(/usr/lib\(\|64\)/\|^\|\([^/a-z]\)\)\(crt[in]\.o\),\3./\4,g' > $@.new
|
|
mv -f $@.new $@
|
|
endif
|