X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/c957a83bde4df2e2d3d1ed0963656856b48ef0a0..224c70764cab4e0e39a26aaf3ad3016552f62f55:/Makefile diff --git a/Makefile b/Makefile index d8357bc..34a4b2d 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,6 @@ # @(#)Makefile 8.2 (Berkeley) 2/3/94 # $FreeBSD: src/lib/libc/Makefile,v 1.31 2001/08/13 21:48:43 peter Exp $ # -# All library objects contain rcsid strings by default; they may be -# excluded as a space-saving measure. To produce a library that does -# not contain these strings, delete -DLIBC_RCS and -DSYSLIBC_RCS -# from CFLAGS below. To remove these strings from just the system call -# stubs, remove just -DSYSLIBC_RCS from CFLAGS. -# # Yes, we build everything with -g, and strip it out later... # # -faltivec now disables inlining, so we can't use it globally. Fortunately, @@ -23,26 +17,19 @@ MACHINE_ARCH != /usr/bin/arch LP64 = 1 .endif CC = gcc-4.0 -# always set __DARWIN_UNIX03 to zero (variant will set to one) except for ppc64 -.ifdef LP64 -CFLAGS += -D__DARWIN_UNIX03=1 -.else -CFLAGS += -D__DARWIN_UNIX03=0 -.endif -CFLAGS += -D__LIBC__ -DNOID -I${.CURDIR}/include +CFLAGS += -D__LIBC__ -D__DARWIN_UNIX03=1 -D__DARWIN_64_BIT_INO_T=1 -D__DARWIN_NON_CANCELABLE=1 -D__DARWIN_VERS_1050=1 +CFLAGS += -DNOID -I${.CURDIR}/include -std=gnu99 .ifdef ALTLIBCHEADERS INCLUDEDIR = ${ALTLIBCHEADERS} -CFLAGS += -I${INCLUDEDIR} +LIBCFLAGS += -I${INCLUDEDIR} .endif -.ifdef ALTFRAMEWORKSPATH -PRIVINC = -F${ALTFRAMEWORKSPATH} -I${ALTFRAMEWORKSPATH}/System.framework/PrivateHeaders -.else -PRIVINC = -I${NEXT_ROOT}/System/Library/Frameworks/System.framework/PrivateHeaders -.endif -CFLAGS += ${PRIVINC} +LIBCFLAGS += -I$(SRCROOT)/include -include _.libc_internal.h +FRAMEWORKS = ${OBJROOT}/Frameworks +PRIVATEHEADERS = ${FRAMEWORKS}/System.framework/PrivateHeaders +PRIVINC = -F${FRAMEWORKS} -I${PRIVATEHEADERS} +CFLAGS += ${PRIVINC} -I${.OBJDIR} CFLAGS += -DLIBC_MAJOR=${SHLIB_MAJOR} -no-cpp-precomp -force_cpusubtype_ALL CFLAGS += -fno-common -pipe -Wmost -g -D__FBSDID=__RCSID -CFLAGS += -finline-limit=1500 --param inline-unit-growth=200 -Winline AINC= -I${.CURDIR}/${MACHINE_ARCH} -no-cpp-precomp -force_cpusubtype_ALL AINC+=-arch ${MACHINE_ARCH} -g CLEANFILES+=tags @@ -52,12 +39,9 @@ PRECIOUSLIB= yes # workaround for 3649783 AINC += -fdollars-in-identifiers -# ppc64 optimizer still blows up on some files, so we use -O0 to turn it -# off on a per file basis -.if (${MACHINE_ARCH} == ppc64) -OPTIMIZE-acl_entry.c = -O0 -# glob-fbsd.c fails with -static -Os (3869444) so turn off optimization -OPTIMIZE-glob-fbsd.c = -O0 +# workaround for 4268581 +.if make(lib${LIB}_static.a) +OPTIMIZE-glob-fbsd.c += -O0 .endif # If these aren't set give it expected defaults @@ -71,9 +55,12 @@ _x_ != test -d ${SYMROOT} || mkdir -p ${SYMROOT} DESTDIR ?= ${DSTROOT} MAKEOBJDIR ?= ${OBJROOT} -CFLAGS += -I${SYMROOT} +# add version string +SRCS += libc_version.c +libc_version.c: + /Developer/Makefiles/bin/version.pl Libc > $@ + .include "${.CURDIR}/Makefile.inc" -.PATH: ${SYMROOT} .include "Makefile.xbs" .if exists(/usr/share/mk/bsd.init.mk) .include