5ae1a533c7
. bitcode fixes . switch to compiler-rt instead of netbsd libc functions or libgcc for support functions for both x86 and arm . minor build fixes . allow build with llvm without crossbuilding llvm itself . can now build minix/arm using llvm and eabi - without C++ support for now (hence crossbuilding llvm itself is turned off for minix/arm) Change-Id: If5c44ef766f5b4fc4394d4586ecc289927a0d6eb
37 lines
836 B
Makefile
37 lines
836 B
Makefile
# $NetBSD: Makefile.inc,v 1.25 2013/09/03 00:30:19 matt Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if !defined(__MINIX)
|
|
SRCS+= __aeabi_read_tp.S __sigaction14_sigtramp.c __sigtramp2.S
|
|
.endif
|
|
|
|
.if empty(LIBC_MACHINE_ARCH:Mearmv7*)
|
|
AFLAGS+= -marm
|
|
.endif
|
|
|
|
CPPFLAGS += -I.
|
|
|
|
.if !empty(LIBC_MACHINE_ARCH:Mearm*)
|
|
SRCS+= arm_initfini.c
|
|
.endif
|
|
|
|
.if ${MKSOFTFLOAT} != "no"
|
|
CPPFLAGS += -DSOFTFLOAT
|
|
|
|
# for earm, use the 64-bit softfloat
|
|
.if ${LIBC_MACHINE_ARCH} == "arm" || ${LIBC_MACHINE_ARCH} == "armeb"
|
|
SOFTFLOAT_BITS=32
|
|
SRCS+= floatunsidf_ieee754.c floatunsisf_ieee754.c
|
|
.endif
|
|
|
|
.include <softfloat/Makefile.inc>
|
|
.else
|
|
.PATH : ${ARCHDIR}/hardfloat
|
|
SRCS.hardfloat+= fpgetround.c fpgetsticky.S fpgetmask.S
|
|
SRCS.hardfloat+= fpsetround.c fpsetmask.S fpsetsticky.S
|
|
.for f in ${SRCS.hardfloat}
|
|
CPPFLAGS.${f} += -mfpu=vfp
|
|
.endfor
|
|
SRCS+= ${SRCS.hardfloat}
|
|
.endif
|