1# @(#)Makefile 8.2 (Berkeley) 2/3/94 2# $FreeBSD$ 3 4SHLIBDIR?= /lib 5 6.include <src.opts.mk> 7 8LIBC_SRCTOP?= ${.CURDIR} 9 10# Pick the current architecture directory for libc. In general, this is 11# named MACHINE_CPUARCH, but some ABIs are different enough to require 12# their own libc, so allow a directory named MACHINE_ARCH to override this. 13 14.if exists(${LIBC_SRCTOP}/${MACHINE_ARCH}) 15LIBC_ARCH=${MACHINE_ARCH} 16.else 17LIBC_ARCH=${MACHINE_CPUARCH} 18.endif 19 20# All library objects contain FreeBSD revision strings by default; they may be 21# excluded as a space-saving measure. To produce a library that does 22# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS 23# below. Note: there are no IDs for syscall stubs whose sources are generated. 24# To include legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS 25# to CFLAGS below. -DSYSLIBC_SCCS affects just the system call stubs. 26LIB=c 27SHLIB_MAJOR= 7 28SHLIB_LDSCRIPT=libc.ldscript 29SHLIB_LDSCRIPT_LINKS=libxnet.so 30WARNS?= 2 31CFLAGS+=-I${LIBC_SRCTOP}/include -I${LIBC_SRCTOP}/../../include 32CFLAGS+=-I${LIBC_SRCTOP}/${LIBC_ARCH} 33.if ${MK_NLS} != "no" 34CFLAGS+=-DNLS 35.endif 36CLEANFILES+=tags 37INSTALL_PIC_ARCHIVE= 38PRECIOUSLIB= 39 40.ifndef NO_THREAD_STACK_UNWIND 41CANCELPOINTS_CFLAGS=-fexceptions 42CFLAGS+=${CANCELPOINTS_CFLAGS} 43.endif 44 45# 46# Link with static libcompiler_rt.a. 47# 48LDFLAGS+= -nodefaultlibs 49LIBADD+= compiler_rt 50 51.if ${MK_SSP} != "no" 52LIBADD+= ssp_nonshared 53.endif 54 55# Extras that live in either libc.a or libc_nonshared.a 56LIBC_NONSHARED_SRCS= 57 58# Define (empty) variables so that make doesn't give substitution 59# errors if the included makefiles don't change these: 60MDSRCS= 61MISRCS= 62MDASM= 63MIASM= 64NOASM= 65 66.include "${LIBC_SRCTOP}/${LIBC_ARCH}/Makefile.inc" 67.include "${LIBC_SRCTOP}/db/Makefile.inc" 68.include "${LIBC_SRCTOP}/compat-43/Makefile.inc" 69.include "${LIBC_SRCTOP}/gdtoa/Makefile.inc" 70.include "${LIBC_SRCTOP}/gen/Makefile.inc" 71.include "${LIBC_SRCTOP}/gmon/Makefile.inc" 72.if ${MK_ICONV} != "no" 73.include "${LIBC_SRCTOP}/iconv/Makefile.inc" 74.endif 75.include "${LIBC_SRCTOP}/inet/Makefile.inc" 76.include "${LIBC_SRCTOP}/isc/Makefile.inc" 77.include "${LIBC_SRCTOP}/locale/Makefile.inc" 78.include "${LIBC_SRCTOP}/md/Makefile.inc" 79.include "${LIBC_SRCTOP}/nameser/Makefile.inc" 80.include "${LIBC_SRCTOP}/net/Makefile.inc" 81.include "${LIBC_SRCTOP}/nls/Makefile.inc" 82.include "${LIBC_SRCTOP}/posix1e/Makefile.inc" 83.if ${LIBC_ARCH} != "aarch64" && \ 84 ${LIBC_ARCH} != "amd64" && \ 85 ${LIBC_ARCH} != "powerpc64" && \ 86 ${LIBC_ARCH} != "riscv" && \ 87 ${LIBC_ARCH} != "sparc64" && \ 88 ${MACHINE_ARCH:Mmipsn32*} == "" && \ 89 ${MACHINE_ARCH:Mmips64*} == "" 90.include "${LIBC_SRCTOP}/quad/Makefile.inc" 91.endif 92.include "${LIBC_SRCTOP}/regex/Makefile.inc" 93.include "${LIBC_SRCTOP}/resolv/Makefile.inc" 94.include "${LIBC_SRCTOP}/stdio/Makefile.inc" 95.include "${LIBC_SRCTOP}/stdlib/Makefile.inc" 96.include "${LIBC_SRCTOP}/stdlib/jemalloc/Makefile.inc" 97.include "${LIBC_SRCTOP}/stdtime/Makefile.inc" 98.include "${LIBC_SRCTOP}/string/Makefile.inc" 99.include "${LIBC_SRCTOP}/sys/Makefile.inc" 100.include "${LIBC_SRCTOP}/secure/Makefile.inc" 101.include "${LIBC_SRCTOP}/rpc/Makefile.inc" 102.include "${LIBC_SRCTOP}/uuid/Makefile.inc" 103.include "${LIBC_SRCTOP}/xdr/Makefile.inc" 104.if (${LIBC_ARCH} == "arm" && ${MACHINE_ARCH} != "armv6hf") ||\ 105 ${LIBC_ARCH} == "mips" 106.include "${LIBC_SRCTOP}/softfloat/Makefile.inc" 107.endif 108.if ${MK_NIS} != "no" 109CFLAGS+= -DYP 110.include "${LIBC_SRCTOP}/yp/Makefile.inc" 111.endif 112.include "${LIBC_SRCTOP}/capability/Makefile.inc" 113.if ${MK_HESIOD} != "no" 114CFLAGS+= -DHESIOD 115.endif 116.if ${MK_FP_LIBC} == "no" 117CFLAGS+= -DNO_FLOATING_POINT 118.endif 119.if ${MK_NS_CACHING} != "no" 120CFLAGS+= -DNS_CACHING 121.endif 122.if defined(_FREEFALL_CONFIG) 123CFLAGS+=-D_FREEFALL_CONFIG 124.endif 125 126STATICOBJS+=${LIBC_NONSHARED_SRCS:S/.c$/.o/} 127 128VERSION_DEF=${LIBC_SRCTOP}/Versions.def 129SYMBOL_MAPS=${SYM_MAPS} 130CFLAGS+= -DSYMBOL_VERSIONING 131 132# If there are no machine dependent sources, append all the 133# machine-independent sources: 134.if empty(MDSRCS) 135SRCS+= ${MISRCS} 136.else 137# Append machine-dependent sources, then append machine-independent sources 138# for which there is no machine-dependent variant. 139SRCS+= ${MDSRCS} 140.for _src in ${MISRCS} 141.if ${MDSRCS:R:M${_src:R}} == "" 142SRCS+= ${_src} 143.endif 144.endfor 145.endif 146 147KQSRCS= adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \ 148 lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \ 149 subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c 150KSRCS= bcmp.c ffs.c ffsl.c fls.c flsl.c mcount.c strcat.c strchr.c \ 151 strcmp.c strcpy.c strlen.c strncpy.c strrchr.c 152 153libkern: libkern.gen libkern.${LIBC_ARCH} 154 155libkern.gen: ${KQSRCS} ${KSRCS} 156 ${CP} ${LIBC_SRCTOP}/quad/quad.h ${.ALLSRC} ${DESTDIR}/sys/libkern 157 158libkern.${LIBC_ARCH}:: ${KMSRCS} 159.if defined(KMSRCS) && !empty(KMSRCS) 160 ${CP} ${.ALLSRC} ${DESTDIR}/sys/libkern/${LIBC_ARCH} 161.endif 162 163.if ${MK_TESTS} != "no" 164SUBDIR+= tests 165.endif 166 167.include <bsd.lib.mk> 168 169.if !defined(_SKIP_BUILD) 170# We need libutil.h, get it directly to avoid 171# recording a build dependency 172CFLAGS+= -I${SRCTOP}/lib/libutil 173# Same issue with libm 174MSUN_ARCH_SUBDIR != ${MAKE} -B -C ${SRCTOP}/lib/msun -V ARCH_SUBDIR 175# unfortunately msun/src contains both private and public headers 176CFLAGS+= -I${SRCTOP}/lib/msun/${MSUN_ARCH_SUBDIR} 177.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" 178CFLAGS+= -I${SRCTOP}/lib/msun/x86 179.endif 180CFLAGS+= -I${SRCTOP}/lib/msun/src 181# and we do not want to record a dependency on msun 182.if ${.MAKE.LEVEL} > 0 183GENDIRDEPS_FILTER+= N${RELDIR:H}/msun 184.endif 185.endif 186 187# Disable warnings in contributed sources. 188CWARNFLAGS:= ${.IMPSRC:Ngdtoa_*.c:C/^.+$/${CWARNFLAGS}/:C/^$/-w/} 189# XXX For now, we don't allow libc to be compiled with 190# -fstack-protector-all because it breaks rtld. We may want to make a librtld 191# in the future to circumvent this. 192SSP_CFLAGS:= ${SSP_CFLAGS:S/^-fstack-protector-all$/-fstack-protector/} 193# Disable stack protection for SSP symbols. 194SSP_CFLAGS:= ${.IMPSRC:N*/stack_protector.c:C/^.+$/${SSP_CFLAGS}/} 195# Generate stack unwinding tables for cancellation points 196CANCELPOINTS_CFLAGS:= ${.IMPSRC:Mcancelpoints_*:C/^.+$/${CANCELPOINTS_CFLAGS}/:C/^$//} 197