1.0.39.15: delete all traces of the darwin dlshim
[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
24 OS_LIBS = -lSystem -lc -ldl
25 ifdef LISP_FEATURE_SB_THREAD
26   OS_LIBS += -lpthread
27 endif
28
29 CC = gcc
30
31 ASSEM_SRC = x86-assem.S ldso-stubs.S
32 ARCH_SRC = x86-arch.c
33
34 CPPFLAGS += -no-cpp-precomp
35
36 GC_SRC = gencgc.c
37
38 .PHONY: after-grovel-headers
39
40 # Nothing to do.
41 after-grovel-headers: