mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-10 03:10:09 +00:00
11 lines
308 B
Makefile
11 lines
308 B
Makefile
|
# The assembler on SPARC needs the -fPIC flag even when it's assembler code.
|
||
|
ASFLAGS-.so = -fPIC
|
||
|
|
||
|
ifeq ($(subdir), csu)
|
||
|
extra-objs += crtbegin.o crtend.o crtbeginS.o crtendS.o
|
||
|
install-lib += crtbegin.o crtend.o crtbeginS.o crtendS.o
|
||
|
|
||
|
CPPFLAGS-crtbeginS.S = -fPIC -DPIC
|
||
|
CPPFLAGS-crtendS.S = -fPIC -DPIC
|
||
|
endif
|