2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-18 01:52:17 +00:00
Files
build/src/engine/mem.c
2006-09-07 05:39:37 +00:00

61 lines
1.8 KiB
C

/*
Copyright Rene Rivera 2006.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
#include "mem.h"
#ifdef OPT_BOEHM_GC
/* Compile the Boehm GC as one big chunk of code. It's much easier
this way, than trying to make radical changes to the bjam build
scripts. */
#define ATOMIC_UNCOLLECTABLE
#define NO_SIGNALS
#define NO_EXECUTE_PERMISSION
#define SILENT
#define ALL_INTERIOR_POINTERS
#define LARGE_CONFIG
#define NO_DEBUGGING
#include "boehm_gc/reclaim.c"
#include "boehm_gc/allchblk.c"
#include "boehm_gc/misc.c"
#include "boehm_gc/alloc.c"
#include "boehm_gc/mach_dep.c"
#include "boehm_gc/os_dep.c"
#include "boehm_gc/mark_rts.c"
#include "boehm_gc/headers.c"
#include "boehm_gc/mark.c"
#include "boehm_gc/obj_map.c"
#include "boehm_gc/pcr_interface.c"
#include "boehm_gc/blacklst.c"
#include "boehm_gc/new_hblk.c"
#include "boehm_gc/real_malloc.c"
#include "boehm_gc/dyn_load.c"
#include "boehm_gc/dbg_mlc.c"
#include "boehm_gc/malloc.c"
#include "boehm_gc/stubborn.c"
#include "boehm_gc/checksums.c"
#include "boehm_gc/solaris_threads.c"
#include "boehm_gc/pthread_support.c"
#include "boehm_gc/pthread_stop_world.c"
#include "boehm_gc/darwin_stop_world.c"
#include "boehm_gc/typd_mlc.c"
#include "boehm_gc/ptr_chck.c"
#include "boehm_gc/mallocx.c"
#include "boehm_gc/solaris_pthreads.c"
#include "boehm_gc/gcj_mlc.c"
#include "boehm_gc/specific.c"
#include "boehm_gc/gc_dlopen.c"
#include "boehm_gc/backgraph.c"
#include "boehm_gc/win32_threads.c"
/* Needs to be last. */
#include "boehm_gc/finalize.c"
#endif