1.0.39.12: remove darwin-langinfo
[sbcl.git] / src / runtime / Config.x86-darwin
1 # -*- makefile -*- for the C-level run-time support for SBCL
2
3 # This software is part of the SBCL system. See the README file for
4 # more information.
5 #
6 # This software is derived from the CMU CL system, which was
7 # written at Carnegie Mellon University and released into the
8 # public domain. The software is in the public domain and is
9 # provided with absolutely no warranty. See the COPYING and CREDITS
10 # files for more information.
11
12 CFLAGS = -arch i386 -g -Wall -O2 -fdollars-in-identifiers
13 LINKFLAGS += -arch i386
14 ifdef LISP_FEATURE_DARWIN9_OR_BETTER
15 CFLAGS += -mmacosx-version-min=10.5
16 LINKFLAGS += -mmacosx-version-min=10.5
17 else
18 CFLAGS += -mmacosx-version-min=10.4
19 LINKFLAGS += -mmacosx-version-min=10.4
20 endif
21
22 OS_SRC = bsd-os.c x86-bsd-os.c darwin-os.c x86-darwin-os.c
23 ifdef LISP_FEATURE_DLSHIM
24   OS_SRC += darwin-dlshim.c
25 endif
26
27 OS_LIBS = -lSystem -lc -ldl
28 ifdef LISP_FEATURE_SB_THREAD
29   OS_LIBS += -lpthread
30 endif
31
32 CC = gcc
33
34 ASSEM_SRC = x86-assem.S ldso-stubs.S
35 ARCH_SRC = x86-arch.c
36
37 CPPFLAGS += -no-cpp-precomp
38
39 GC_SRC = gencgc.c
40
41 .PHONY: after-grovel-headers
42
43 # Nothing to do.
44 after-grovel-headers: