Propagate that (copy-seq x) has the same length as x.
[sbcl.git] / src / runtime / Config.x86-64-bsd
blob1261fa1a9a990be3dbd6b21093ceb57a56eb2d78
1 # -*- makefile -*- for the C-level run-time support for SBCL
2 # configuration stuff shared between various *BSD OSes
4 # This software is part of the SBCL system. See the README file for
5 # more information.
7 # This software is derived from the CMU CL system, which was
8 # written at Carnegie Mellon University and released into the
9 # public domain. The software is in the public domain and is
10 # provided with absolutely no warranty. See the COPYING and CREDITS
11 # files for more information.
13 ASSEM_SRC = x86-64-assem.S
14 ARCH_SRC = x86-64-arch.c
16 OS_SRC = bsd-os.c x86-64-bsd-os.c
17 OS_LIBS = # -ldl
18 ifdef LISP_FEATURE_SB_CORE_COMPRESSION
19   OS_LIBS += -lzstd
20 endif
21 ifdef HAVE_LIBUNWIND
22   OS_LIBS += -lunwind
23 endif
25 CFLAGS += -fno-omit-frame-pointer
26 LINKFLAGS += -Wl,--export-dynamic
28 ifdef LISP_FEATURE_IMMOBILE_SPACE
29   GC_SRC = fullcgc.c gencgc.c traceroot.c immobile-space.c
30 else ifdef LISP_FEATURE_MARK_REGION_GC
31   GC_SRC = fullcgc.c pmrgc.c traceroot.c mark-region.c incremental-compact.c gc-thread-pool.c
32 else
33   GC_SRC = fullcgc.c gencgc.c traceroot.c
34 endif