16 lines
393 B
Makefile
16 lines
393 B
Makefile
ifeq ($(subdir),misc)
|
|
sysdep_headers += sys/asm.h
|
|
endif
|
|
|
|
# LoongArch's assembler also needs to know about PIC as it changes the
|
|
# definition of some assembler macros.
|
|
ASFLAGS-.os += $(pic-ccflag)
|
|
|
|
abi-variants := lp64
|
|
|
|
ifeq (,$(filter $(default-abi),$(abi-variants)))
|
|
$(error Unknown ABI $(default-abi), must be one of $(abi-variants))
|
|
endif
|
|
|
|
abi-lp64-condition := defined __loongarch_lp64
|