mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-13 20:50:08 +00:00
10 lines
349 B
Makefile
10 lines
349 B
Makefile
ifeq ($(subdir),linuxthreads)
|
|
# gcc -m64 has /usr/lib64/crti.o hardcoded in the specs file, because otherwise
|
|
# it would normally find 32bit crti.o.
|
|
LDFLAGS-pthread.so += -specs=$(objpfx)specs
|
|
before-compile += $(objpfx)specs
|
|
generated += specs
|
|
$(objpfx)specs:
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) -dumpspecs | sed 's_/usr/lib64/crti.o_crti.o_g' > $@
|
|
endif
|