Makefile (d7847a8d351436a4654bd2c746bc9c04401160ee) | Makefile (e55512504d0178983978d64d67eed1cc85826523) |
---|---|
1 2PACKAGE= clibs 3SHLIBDIR?= /lib 4 5.include <src.opts.mk> 6 7LIBC_SRCTOP?= ${.CURDIR} 8LIBSYS_SRCTOP?= ${.CURDIR:H}/libsys --- 5 unchanged lines hidden (view full) --- 14# Note: This is copied to msun/Makefile 15M=${MACHINE_ARCH:S/powerpc64le/powerpc64/} 16.if exists(${LIBC_SRCTOP}/${M}) 17LIBC_ARCH=${M} 18.else 19LIBC_ARCH=${MACHINE_CPUARCH} 20.endif 21 | 1 2PACKAGE= clibs 3SHLIBDIR?= /lib 4 5.include <src.opts.mk> 6 7LIBC_SRCTOP?= ${.CURDIR} 8LIBSYS_SRCTOP?= ${.CURDIR:H}/libsys --- 5 unchanged lines hidden (view full) --- 14# Note: This is copied to msun/Makefile 15M=${MACHINE_ARCH:S/powerpc64le/powerpc64/} 16.if exists(${LIBC_SRCTOP}/${M}) 17LIBC_ARCH=${M} 18.else 19LIBC_ARCH=${MACHINE_CPUARCH} 20.endif 21 |
22CFLAGS+=-D_FORTIFY_SOURCE_read=_read 23 |
|
22# All library objects contain FreeBSD revision strings by default; they may be 23# excluded as a space-saving measure. To produce a library that does 24# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS 25# below. Note: there are no IDs for syscall stubs whose sources are generated. 26# To include legacy CSRG SCCS ID strings, remove -DNO__SCCSID from CFLAGS. 27# To include RCS ID strings from other BSD projects, remove -DNO__RCSID from CFLAGS. 28CFLAGS+=-DNO__SCCSID -DNO__RCSID 29 --- 195 unchanged lines hidden --- | 24# All library objects contain FreeBSD revision strings by default; they may be 25# excluded as a space-saving measure. To produce a library that does 26# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS 27# below. Note: there are no IDs for syscall stubs whose sources are generated. 28# To include legacy CSRG SCCS ID strings, remove -DNO__SCCSID from CFLAGS. 29# To include RCS ID strings from other BSD projects, remove -DNO__RCSID from CFLAGS. 30CFLAGS+=-DNO__SCCSID -DNO__RCSID 31 --- 195 unchanged lines hidden --- |