stl_algo.h (transform (both signatures), generate_n): Use __typeof__ in concept checks.
[official-gcc.git] / boehm-gc / Makefile.direct
blob84a7dd3d63e33b4641069d31fafd0b02a7626092
1 # This is the original manually generated Makefile.  It may still be used
2 # to build the collector.
4 # Primary targets:
5 # gc.a - builds basic library
6 # c++ - adds C++ interface to library
7 # cords - adds cords (heavyweight strings) to library
8 # test - prints porting information, then builds basic version of gc.a,
9 #        and runs some tests of collector and cords.  Does not add cords or
10 #        c++ interface to gc.a
11 # cord/de - builds dumb editor based on cords.
12 ABI_FLAG= 
13 # ABI_FLAG should be the cc flag that specifies the ABI.  On most
14 # platforms this will be the empty string.  Possible values:
15 # +DD64 for 64-bit executable on HP/UX.
16 # -n32, -n64, -o32 for SGI/MIPS ABIs.
18 AS_ABI_FLAG=$(ABI_FLAG)
19 # ABI flag for assembler.  On HP/UX this is +A64 for 64 bit
20 # executables.
22 CC=cc $(ABI_FLAG)
23 CXX=g++ $(ABI_FLAG)
24 AS=as $(AS_ABI_FLAG)
25 #  The above doesn't work with gas, which doesn't run cpp.
26 #  Define AS as `gcc -c -x assembler-with-cpp' instead.
28 # Redefining srcdir allows object code for the nonPCR version of the collector
29 # to be generated in different directories.
30 srcdir= .
31 VPATH= $(srcdir)
33 CFLAGS= -O -I$(srcdir)/include -DATOMIC_UNCOLLECTABLE -DNO_SIGNALS -DNO_EXECUTE_PERMISSION -DSILENT -DALL_INTERIOR_POINTERS
35 # To build the parallel collector on Linux, add to the above:
36 # -DGC_LINUX_THREADS -DPARALLEL_MARK -DTHREAD_LOCAL_ALLOC
37 # To build the parallel collector n a static library on HP/UX, add to the above:
38 # -DGC_HPUX_THREADS -DPARALLEL_MARK -DTHREAD_LOCAL_ALLOC -DUSE_HPUX_TLS -D_POSIX_C_SOURCE=199506L
40 # HOSTCC and HOSTCFLAGS are used to build executables that will be run as
41 # part of the build process, i.e. on the build machine.  These will usually
42 # be the same as CC and CFLAGS, except in a cross-compilation environment.
43 # Note that HOSTCFLAGS should include any -D flags that affect thread support.
44 HOSTCC=$(CC)
45 HOSTCFLAGS=$(CFLAGS)
47 # For dynamic library builds, it may be necessary to add flags to generate
48 # PIC code, e.g. -fPIC on Linux.
50 # Setjmp_test may yield overly optimistic results when compiled
51 # without optimization.
53 # These define arguments influence the collector configuration:
54 # -DSILENT disables statistics printing, and improves performance.
55 # -DFIND_LEAK causes GC_find_leak to be initially set.
56 #   This causes the collector to assume that all inaccessible
57 #   objects should have been explicitly deallocated, and reports exceptions.
58 #   Finalization and the test program are not usable in this mode.
59 # -DGC_SOLARIS_THREADS enables support for Solaris (thr_) threads.
60 #   (Clients should also define GC_SOLARIS_THREADS and then include
61 #   gc.h before performing thr_ or dl* or GC_ operations.)
62 #   Must also define -D_REENTRANT.
63 # -DGC_SOLARIS_PTHREADS enables support for Solaris pthreads.
64 #   (Internally this define GC_SOLARIS_THREADS as well.)
65 # -DGC_IRIX_THREADS enables support for Irix pthreads.  See README.irix.
66 # -DGC_HPUX_THREADS enables support for HP/UX 11 pthreads.
67 #   Also requires -D_REENTRANT or -D_POSIX_C_SOURCE=199506L. See README.hp.
68 # -DGC_LINUX_THREADS enables support for Xavier Leroy's Linux threads.
69 #   see README.linux.  -D_REENTRANT may also be required.
70 # -DGC_OSF1_THREADS enables support for Tru64 pthreads.  Untested.
71 # -DGC_FREEBSD_THREADS enables support for FreeBSD pthreads.  Untested.
72 #   Appeared to run into some underlying thread problems.
73 # -DALL_INTERIOR_POINTERS allows all pointers to the interior
74 #   of objects to be recognized.  (See gc_priv.h for consequences.)
75 #   Alternatively, GC_all_interior_pointers can be set at process
76 #   initialization time.
77 # -DSMALL_CONFIG tries to tune the collector for small heap sizes,
78 #   usually causing it to use less space in such situations.
79 #   Incremental collection no longer works in this case.
80 # -DLARGE_CONFIG tunes the collector for unusually large heaps.
81 #   Necessary for heaps larger than about 500 MB on most machines.
82 #   Recommended for heaps larger than about 64 MB.
83 # -DDONT_ADD_BYTE_AT_END is meaningful only with -DALL_INTERIOR_POINTERS or
84 #   GC_all_interior_pointers = 1.  Normally -DALL_INTERIOR_POINTERS
85 #   causes all objects to be padded so that pointers just past the end of
86 #   an object can be recognized.  This can be expensive.  (The padding
87 #   is normally more than one byte due to alignment constraints.)
88 #   -DDONT_ADD_BYTE_AT_END disables the padding.
89 # -DNO_SIGNALS does not disable signals during critical parts of
90 #   the GC process.  This is no less correct than many malloc 
91 #   implementations, and it sometimes has a significant performance
92 #   impact.  However, it is dangerous for many not-quite-ANSI C
93 #   programs that call things like printf in asynchronous signal handlers.
94 #   This is on by default.  Turning it off has not been extensively tested with
95 #   compilers that reorder stores.  It should have been.
96 # -DNO_EXECUTE_PERMISSION may cause some or all of the heap to not
97 #   have execute permission, i.e. it may be impossible to execute
98 #   code from the heap.  Currently this only affects the incremental
99 #   collector on UNIX machines.  It may greatly improve its performance,
100 #   since this may avoid some expensive cache synchronization.
101 # -DGC_NO_OPERATOR_NEW_ARRAY declares that the C++ compiler does not support
102 #   the  new syntax "operator new[]" for allocating and deleting arrays.
103 #   See gc_cpp.h for details.  No effect on the C part of the collector.
104 #   This is defined implicitly in a few environments.  Must also be defined
105 #   by clients that use gc_cpp.h.
106 # -DREDIRECT_MALLOC=X causes malloc, realloc, and free to be
107 #   defined as aliases for X, GC_realloc, and GC_free, respectively.
108 #   Calloc and strdup are redefined in terms of the new malloc.  X should
109 #   be either GC_malloc or GC_malloc_uncollectable, or
110 #   GC_debug_malloc_replacement.  (The latter invokes GC_debug_malloc
111 #   with dummy source location information, but still results in
112 #   properly remembered call stacks on Linux/X86 and Solaris/SPARC.)
113 #   The former is occasionally useful for working around leaks in code
114 #   you don't want to (or can't) look at.  It may not work for
115 #   existing code, but it often does.  Neither works on all platforms,
116 #   since some ports use malloc or calloc to obtain system memory.
117 #   (Probably works for UNIX, and win32.)  If you build with DBG_HDRS_ALL,
118 #   you should only use GC_debug_malloc_replacement as a malloc
119 #   replacement.
120 # -DREDIRECT_REALLOC=X causes GC_realloc to be redirected to X.
121 #   The canonical use is -DREDIRECT_REALLOC=GC_debug_realloc_replacement,
122 #   together with -DREDIRECT_MALLOC=GC_debug_malloc_replacement to
123 #   generate leak reports with call stacks for both malloc and realloc.
124 # -DIGNORE_FREE turns calls to free into a noop.  Only useful with
125 #   -DREDIRECT_MALLOC.
126 # -DNO_DEBUGGING removes GC_dump and the debugging routines it calls.
127 #   Reduces code size slightly at the expense of debuggability.
128 # -DJAVA_FINALIZATION makes it somewhat safer to finalize objects out of
129 #   order by specifying a nonstandard finalization mark procedure  (see
130 #   finalize.c).  Objects reachable from finalizable objects will be marked
131 #   in a sepearte postpass, and hence their memory won't be reclaimed.
132 #   Not recommended unless you are implementing a language that specifies
133 #   these semantics.  Since 5.0, determines only only the initial value
134 #   of GC_java_finalization variable.
135 # -DFINALIZE_ON_DEMAND causes finalizers to be run only in response
136 #   to explicit GC_invoke_finalizers() calls.
137 #   In 5.0 this became runtime adjustable, and this only determines the
138 #   initial value of GC_finalize_on_demand.
139 # -DATOMIC_UNCOLLECTABLE includes code for GC_malloc_atomic_uncollectable.
140 #   This is useful if either the vendor malloc implementation is poor,
141 #   or if REDIRECT_MALLOC is used.
142 # -DHBLKSIZE=ddd, where ddd is a power of 2 between 512 and 16384, explicitly
143 #   sets the heap block size.  Each heap block is devoted to a single size and
144 #   kind of object.  For the incremental collector it makes sense to match
145 #   the most likely page size.  Otherwise large values result in more
146 #   fragmentation, but generally better performance for large heaps.
147 # -DUSE_MMAP use MMAP instead of sbrk to get new memory.
148 #   Works for Solaris and Irix.
149 # -DUSE_MUNMAP causes memory to be returned to the OS under the right
150 #   circumstances.  This currently disables VM-based incremental collection.
151 #   This is currently experimental, and works only under some Unix,
152 #   Linux and Windows versions.
153 # -DMMAP_STACKS (for Solaris threads) Use mmap from /dev/zero rather than
154 #   GC_scratch_alloc() to get stack memory.
155 # -DPRINT_BLACK_LIST Whenever a black list entry is added, i.e. whenever
156 #   the garbage collector detects a value that looks almost, but not quite,
157 #   like a pointer, print both the address containing the value, and the
158 #   value of the near-bogus-pointer.  Can be used to identifiy regions of
159 #   memory that are likely to contribute misidentified pointers.
160 # -DKEEP_BACK_PTRS Add code to save back pointers in debugging headers
161 #   for objects allocated with the debugging allocator.  If all objects
162 #   through GC_MALLOC with GC_DEBUG defined, this allows the client
163 #   to determine how particular or randomly chosen objects are reachable
164 #   for debugging/profiling purposes.  The gc_backptr.h interface is
165 #   implemented only if this is defined.
166 # -DGC_ASSERTIONS Enable some internal GC assertion checking.  Currently
167 #   this facility is only used in a few places.  It is intended primarily
168 #   for debugging of the garbage collector itself, but could also
169 # -DDBG_HDRS_ALL Make sure that all objects have debug headers.  Increases
170 #   the reliability (from 99.9999% to 100%) of some of the debugging
171 #   code (especially KEEP_BACK_PTRS).  Makes -DSHORT_DBG_HDRS possible.
172 #   Assumes that all client allocation is done through debugging
173 #   allocators.
174 # -DSHORT_DBG_HDRS Assume that all objects have debug headers.  Shorten
175 #   the headers to minimize object size, at the expense of checking for
176 #   writes past the end of an object.  This is intended for environments
177 #   in which most client code is written in a "safe" language, such as
178 #   Scheme or Java.  Assumes that all client allocation is done using
179 #   the GC_debug_ functions, or through the macros that expand to these,
180 #   or by redirecting malloc to GC_debug_malloc_replacement.
181 #   (Also eliminates the field for the requested object size.)
182 #   occasionally be useful for debugging of client code.  Slows down the
183 #   collector somewhat, but not drastically.
184 # -DSAVE_CALL_COUNT=<n> Set the number of call frames saved with objects
185 #   allocated through the debugging interface.  Affects the amount of
186 #   information generated in leak reports.  Only matters on platforms
187 #   on which we can quickly generate call stacks, currently Linux/(X86 & SPARC)
188 #   and Solaris/SPARC and platforms that provide execinfo.h.
189 #   Default is zero.  On X86, client
190 #   code should NOT be compiled with -fomit-frame-pointer.
191 # -DSAVE_CALL_NARGS=<n> Set the number of functions arguments to be
192 #   saved with each call frame.  Default is zero.  Ignored if we
193 #   don't know how to retrieve arguments on the platform.
194 # -DCHECKSUMS reports on erroneously clear dirty bits, and unexpectedly
195 #   altered stubborn objects, at substantial performance cost.
196 #   Use only for debugging of the incremental collector.
197 # -DGC_GCJ_SUPPORT includes support for gcj (and possibly other systems
198 #   that include a pointer to a type descriptor in each allocated object).
199 #   Building this way requires an ANSI C compiler.
200 # -DUSE_I686_PREFETCH causes the collector to issue Pentium III style
201 #   prefetch instructions.  No effect except on X86 Linux platforms.
202 #   Assumes a very recent gcc-compatible compiler and assembler.
203 #   (Gas prefetcht0 support was added around May 1999.)
204 #   Empirically the code appears to still run correctly on Pentium II
205 #   processors, though with no performance benefit.  May not run on other
206 #   X86 processors?  In some cases this improves performance by
207 #   15% or so.
208 # -DUSE_3DNOW_PREFETCH causes the collector to issue AMD 3DNow style
209 #   prefetch instructions.  Same restrictions as USE_I686_PREFETCH.
210 #   Minimally tested.  Didn't appear to be an obvious win on a K6-2/500.
211 # -DGC_USE_LD_WRAP in combination with the old flags listed in README.linux
212 #   causes the collector some system and pthread calls in a more transparent
213 #   fashion than the usual macro-based approach.  Requires GNU ld, and
214 #   currently probably works only with Linux.
215 # -DTHREAD_LOCAL_ALLOC defines GC_local_malloc(), GC_local_malloc_atomic()
216 #   and GC_local_gcj_malloc().  Needed for gc_gcj.h interface.  These allocate
217 #   in a way that usually does not involve acquisition of a global lock.
218 #   Currently requires -DGC_LINUX_THREADS, but should be easy to port to
219 #   other pthreads environments.  Recommended for multiprocessors.
220 # -DPARALLEL_MARK allows the marker to run in multiple threads.  Recommended
221 #   for multiprocessors.  Currently requires Linux on X86 or IA64, though
222 #   support for other Posix platforms should be fairly easy to add,
223 #   if the thread implementation is otherwise supported.
224 # -DNO_GETENV prevents the collector from looking at environment variables.
225 #   These may otherwise alter its configuration, or turn off GC altogether.
226 #   I don't know of a reason to disable this, except possibly if the
227 #   resulting process runs as a privileged user?
228 # -DUSE_GLOBAL_ALLOC.  Win32 only.  Use GlobalAlloc instead of
229 #   VirtualAlloc to allocate the heap.  May be needed to work around
230 #   a Windows NT/2000 issue.  Incompatible with USE_MUNMAP.
231 #   See README.win32 for details.
232 # -DMAKE_BACK_GRAPH. Enable GC_PRINT_BACK_HEIGHT environment variable.
233 #   See README.environment for details.  Experimental. Limited platform
234 #   support.  Implies DBG_HDRS_ALL.  All allocation should be done using
235 #   the debug interface.
236 # -DSTUBBORN_ALLOC allows allocation of "hard to change" objects, and thus
237 #   makes incremental collection easier.  Was enabled by default until 6.0.
238 #   Rarely used, to my knowledge.
241 CXXFLAGS= $(CFLAGS) 
242 AR= ar
243 RANLIB= ranlib
246 OBJS= alloc.o reclaim.o allchblk.o misc.o mach_dep.o os_dep.o mark_rts.o headers.o mark.o obj_map.o blacklst.o finalize.o new_hblk.o dbg_mlc.o malloc.o stubborn.o checksums.o solaris_threads.o irix_threads.o linux_threads.o typd_mlc.o ptr_chck.o mallocx.o solaris_pthreads.o gcj_mlc.o specific.o gc_dlopen.o backgraph.o
248 CSRCS= reclaim.c allchblk.c misc.c alloc.c mach_dep.c os_dep.c mark_rts.c headers.c mark.c obj_map.c pcr_interface.c blacklst.c finalize.c new_hblk.c real_malloc.c dyn_load.c dbg_mlc.c malloc.c stubborn.c checksums.c solaris_threads.c irix_threads.c linux_threads.c typd_mlc.c ptr_chck.c mallocx.c solaris_pthreads.c gcj_mlc.c specific.c gc_dlopen.c backgraph.c
250 CORD_SRCS=  cord/cordbscs.c cord/cordxtra.c cord/cordprnt.c cord/de.c cord/cordtest.c include/cord.h include/ec.h include/private/cord_pos.h cord/de_win.c cord/de_win.h cord/de_cmds.h cord/de_win.ICO cord/de_win.RC
252 CORD_OBJS=  cord/cordbscs.o cord/cordxtra.o cord/cordprnt.o
254 SRCS= $(CSRCS) mips_sgi_mach_dep.s rs6000_mach_dep.s alpha_mach_dep.s \
255     sparc_mach_dep.S include/gc.h include/gc_typed.h \
256     include/private/gc_hdrs.h include/private/gc_priv.h \
257     include/private/gcconfig.h include/private/gc_pmark.h \
258     include/gc_inl.h include/gc_inline.h include/gc_mark.h \
259     threadlibs.c if_mach.c if_not_there.c gc_cpp.cc include/gc_cpp.h \
260     gcname.c include/weakpointer.h include/private/gc_locks.h \
261     gcc_support.c mips_ultrix_mach_dep.s include/gc_alloc.h \
262     include/new_gc_alloc.h include/javaxfc.h sparc_sunos4_mach_dep.s \
263     sparc_netbsd_mach_dep.s \
264     include/private/solaris_threads.h include/gc_backptr.h \
265     hpux_test_and_clear.s include/gc_gcj.h \
266     include/gc_local_alloc.h include/private/dbg_mlc.h \
267     include/private/specific.h powerpc_macosx_mach_dep.s \
268     include/leak_detector.h include/gc_amiga_redirects.h \
269     include/gc_pthread_redirects.h ia64_save_regs_in_stack.s \
270     $(CORD_SRCS)
272 DOC_FILES= README.QUICK doc/README.Mac doc/README.MacOSX doc/README.OS2 \
273         doc/README.amiga doc/README.cords doc/debugging.html \
274         doc/README.dj doc/README.hp doc/README.linux doc/README.rs6000 \
275         doc/README.sgi doc/README.solaris2 doc/README.uts \
276         doc/README.win32 doc/barrett_diagram doc/README \
277         doc/README.contributors doc/README.changes doc/gc.man \
278         doc/README.environment doc/tree.html doc/gcdescr.html \
279         doc/README.autoconf doc/README.macros doc/README.ews4800
281 TESTS= tests/test.c tests/test_cpp.cc tests/trace_test.c \
282         tests/leak_test.c tests/thread_leak_test.c
284 GNU_BUILD_FILES= configure.in Makefile.am configure acinclude.m4 \
285                  libtool.m4 install-sh configure.host Makefile.in \
286                  aclocal.m4 config.sub config.guess ltconfig \
287                  ltmain.sh mkinstalldirs
289 OTHER_MAKEFILES= OS2_MAKEFILE NT_MAKEFILE NT_THREADS_MAKEFILE gc.mak \
290                  BCC_MAKEFILE EMX_MAKEFILE WCC_MAKEFILE Makefile.dj \
291                  PCR-Makefile SMakefile.amiga Makefile.DLLs \
292                  digimars.mak Makefile.direct
293 #       Makefile and Makefile.direct are copies of each other.
295 OTHER_FILES= Makefile setjmp_t.c callprocs pc_excludes \
296            MacProjects.sit.hqx MacOS.c \
297            Mac_files/datastart.c Mac_files/dataend.c \
298            Mac_files/MacOS_config.h Mac_files/MacOS_Test_config.h \
299            add_gc_prefix.c gc_cpp.cpp win32_threads.c \
300            version.h AmigaOS.c \
301            $(TESTS) $(GNU_BUILD_FILES) $(OTHER_MAKEFILES)
303 CORD_INCLUDE_FILES= $(srcdir)/include/gc.h $(srcdir)/include/cord.h \
304         $(srcdir)/include/ec.h $(srcdir)/include/private/cord_pos.h
306 UTILS= if_mach if_not_there threadlibs
308 # Libraries needed for curses applications.  Only needed for de.
309 CURSES= -lcurses -ltermlib
311 # The following is irrelevant on most systems.  But a few
312 # versions of make otherwise fork the shell specified in
313 # the SHELL environment variable.
314 SHELL= /bin/sh
316 SPECIALCFLAGS = -I$(srcdir)/include
317 # Alternative flags to the C compiler for mach_dep.c.
318 # Mach_dep.c often doesn't like optimization, and it's
319 # not time-critical anyway.
320 # Set SPECIALCFLAGS to -q nodirect_code on Encore.
322 all: gc.a gctest
324 BSD-pkg-all: bsd-libgc.a
326 bsd-libgc.a:
327         $(MAKE) CFLAGS="$(CFLAGS)" clean c++-t
328         mv gc.a bsd-libgc.a
330 BSD-pkg-install: BSD-pkg-all
331         ${CP} bsd-libgc.a libgc.a
332         ${INSTALL_DATA} libgc.a ${PREFIX}/lib
333         ${INSTALL_DATA} gc.h gc_cpp.h ${PREFIX}/include
335 pcr: PCR-Makefile include/private/gc_private.h include/private/gc_hdrs.h \
336 include/private/gc_locks.h include/gc.h include/private/gcconfig.h \
337 mach_dep.o $(SRCS)
338         $(MAKE) -f PCR-Makefile depend
339         $(MAKE) -f PCR-Makefile
341 $(OBJS) tests/test.o dyn_load.o dyn_load_sunos53.o: \
342     $(srcdir)/include/private/gc_priv.h \
343     $(srcdir)/include/private/gc_hdrs.h $(srcdir)/include/private/gc_locks.h \
344     $(srcdir)/include/gc.h \
345     $(srcdir)/include/private/gcconfig.h $(srcdir)/include/gc_typed.h \
346     Makefile
347 # The dependency on Makefile is needed.  Changing
348 # options such as -DSILENT affects the size of GC_arrays,
349 # invalidating all .o files that rely on gc_priv.h
351 mark.o typd_mlc.o finalize.o ptr_chck.o: $(srcdir)/include/gc_mark.h $(srcdir)/include/private/gc_pmark.h
353 specific.o linux_threads.o: $(srcdir)/include/private/specific.h
355 solaris_threads.o solaris_pthreads.o: $(srcdir)/include/private/solaris_threads.h
357 dbg_mlc.o gcj_mlc.o: $(srcdir)/include/private/dbg_mlc.h
359 tests/test.o: tests $(srcdir)/tests/test.c
360         $(CC) $(CFLAGS) -c $(srcdir)/tests/test.c
361         mv test.o tests/test.o
363 tests:
364         mkdir tests
366 base_lib gc.a: $(OBJS) dyn_load.o $(UTILS)
367         echo > base_lib
368         rm -f dont_ar_1
369         ./if_mach SPARC SUNOS5 touch dont_ar_1
370         ./if_mach SPARC SUNOS5 $(AR) rus gc.a $(OBJS) dyn_load.o
371         ./if_mach M68K AMIGA touch dont_ar_1
372         ./if_mach M68K AMIGA $(AR) -vrus gc.a $(OBJS) dyn_load.o
373         ./if_not_there dont_ar_1 $(AR) ru gc.a $(OBJS) dyn_load.o
374         ./if_not_there dont_ar_1 $(RANLIB) gc.a || cat /dev/null
375 #       ignore ranlib failure; that usually means it doesn't exist, and isn't needed
377 cords: $(CORD_OBJS) cord/cordtest $(UTILS)
378         rm -f dont_ar_3
379         ./if_mach SPARC SUNOS5 touch dont_ar_3
380         ./if_mach SPARC SUNOS5 $(AR) rus gc.a $(CORD_OBJS)
381         ./if_mach M68K AMIGA touch dont_ar_3
382         ./if_mach M68K AMIGA $(AR) -vrus gc.a $(CORD_OBJS)
383         ./if_not_there dont_ar_3 $(AR) ru gc.a $(CORD_OBJS)
384         ./if_not_there dont_ar_3 $(RANLIB) gc.a || cat /dev/null
386 gc_cpp.o: $(srcdir)/gc_cpp.cc $(srcdir)/include/gc_cpp.h $(srcdir)/include/gc.h Makefile
387         $(CXX) -c $(CXXFLAGS) $(srcdir)/gc_cpp.cc
389 test_cpp: $(srcdir)/tests/test_cpp.cc $(srcdir)/include/gc_cpp.h gc_cpp.o $(srcdir)/include/gc.h \
390 base_lib $(UTILS)
391         rm -f test_cpp
392         ./if_mach HP_PA HPUX $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/tests/test_cpp.cc gc_cpp.o gc.a -ldld `./threadlibs`
393         ./if_not_there test_cpp $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/tests/test_cpp.cc gc_cpp.o gc.a `./threadlibs`
395 c++-t: c++
396         ./test_cpp 1
398 c++-nt: c++
399         @echo "Use ./test_cpp 1 to test the leak library"
401 c++: gc_cpp.o $(srcdir)/include/gc_cpp.h test_cpp
402         rm -f dont_ar_4
403         ./if_mach SPARC SUNOS5 touch dont_ar_4
404         ./if_mach SPARC SUNOS5 $(AR) rus gc.a gc_cpp.o
405         ./if_mach M68K AMIGA touch dont_ar_4
406         ./if_mach M68K AMIGA $(AR) -vrus gc.a gc_cpp.o
407         ./if_not_there dont_ar_4 $(AR) ru gc.a gc_cpp.o
408         ./if_not_there dont_ar_4 $(RANLIB) gc.a || cat /dev/null
409         ./test_cpp 1
410         echo > c++
412 dyn_load_sunos53.o: dyn_load.c
413         $(CC) $(CFLAGS) -DSUNOS53_SHARED_LIB -c $(srcdir)/dyn_load.c -o $@
415 # SunOS5 shared library version of the collector
416 sunos5gc.so: $(OBJS) dyn_load_sunos53.o
417         $(CC) -G -o sunos5gc.so $(OBJS) dyn_load_sunos53.o -ldl
418         ln sunos5gc.so libgc.so
420 # Alpha/OSF shared library version of the collector
421 libalphagc.so: $(OBJS)
422         ld -shared -o libalphagc.so $(OBJS) dyn_load.o -lc
423         ln libalphagc.so libgc.so
425 # IRIX shared library version of the collector
426 libirixgc.so: $(OBJS) dyn_load.o
427         ld -shared $(ABI_FLAG) -o libirixgc.so $(OBJS) dyn_load.o -lc
428         ln libirixgc.so libgc.so
430 # Linux shared library version of the collector
431 liblinuxgc.so: $(OBJS) dyn_load.o
432         gcc -shared -o liblinuxgc.so $(OBJS) dyn_load.o
433         ln liblinuxgc.so libgc.so
435 # Alternative Linux rule.  This is preferable, but is likely to break the
436 # Makefile for some non-linux platforms.
437 # LIBOBJS= $(patsubst %.o, %.lo, $(OBJS))
439 #.SUFFIXES: .lo $(SUFFIXES)
441 #.c.lo:
442 #       $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c $< -o $@
444 # liblinuxgc.so: $(LIBOBJS) dyn_load.lo
445 #       gcc -shared -Wl,-soname=libgc.so.0 -o libgc.so.0 $(LIBOBJS) dyn_load.lo
446 #       touch liblinuxgc.so
448 mach_dep.o: $(srcdir)/mach_dep.c $(srcdir)/mips_sgi_mach_dep.s $(srcdir)/mips_ultrix_mach_dep.s \
449             $(srcdir)/rs6000_mach_dep.s $(srcdir)/powerpc_macosx_mach_dep.s $(UTILS)
450         rm -f mach_dep.o
451         ./if_mach MIPS IRIX5 $(AS) -o mach_dep.o $(srcdir)/mips_sgi_mach_dep.s
452         ./if_mach MIPS RISCOS $(AS) -o mach_dep.o $(srcdir)/mips_ultrix_mach_dep.s
453         ./if_mach MIPS ULTRIX $(AS) -o mach_dep.o $(srcdir)/mips_ultrix_mach_dep.s
454         ./if_mach RS6000 "" $(AS) -o mach_dep.o $(srcdir)/rs6000_mach_dep.s
455         ./if_mach POWERPC MACOSX $(AS) -o mach_dep.o $(srcdir)/powerpc_macosx_mach_dep.s
456 #       ./if_mach ALPHA "" $(AS) -o mach_dep.o $(srcdir)/alpha_mach_dep.s
457 #       alpha_mach_dep.s assumes that pointers are not saved in fp registers.
458 #       Gcc on a 21264 can spill pointers to fp registers.  Oops.
459         ./if_mach SPARC SUNOS5 $(CC) -c -o mach_dep.o $(srcdir)/sparc_mach_dep.S
460         ./if_mach SPARC SUNOS4 $(AS) -o mach_dep.o $(srcdir)/sparc_sunos4_mach_dep.s
461         ./if_mach SPARC OPENBSD $(AS) -o mach_dep.o $(srcdir)/sparc_sunos4_mach_dep.s
462         ./if_mach SPARC NETBSD $(AS) -o mach_dep.o $(srcdir)/sparc_netbsd_mach_dep.s
463         ./if_mach IA64 "" as $(AS_ABI_FLAG) -o ia64_save_regs_in_stack.o $(srcdir)/ia64_save_regs_in_stack.s
464         ./if_mach IA64 "" $(CC) -c -o mach_dep1.o $(SPECIALCFLAGS) $(srcdir)/mach_dep.c
465         ./if_mach IA64 "" ld -r -o mach_dep.o mach_dep1.o ia64_save_regs_in_stack.o
466         ./if_not_there mach_dep.o $(CC) -c $(SPECIALCFLAGS) $(srcdir)/mach_dep.c
468 mark_rts.o: $(srcdir)/mark_rts.c $(UTILS)
469         rm -f mark_rts.o
470         -./if_mach ALPHA OSF1 $(CC) -c $(CFLAGS) -Wo,-notail $(srcdir)/mark_rts.c
471         ./if_not_there mark_rts.o $(CC) -c $(CFLAGS) $(srcdir)/mark_rts.c
472 #       Work-around for DEC optimizer tail recursion elimination bug.
473 #  The ALPHA-specific line should be removed if gcc is used.
475 alloc.o: version.h
477 cord:
478         mkdir cord
480 cord/cordbscs.o: cord $(srcdir)/cord/cordbscs.c $(CORD_INCLUDE_FILES)
481         $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordbscs.c
482         mv cordbscs.o cord/cordbscs.o
483 #  not all compilers understand -o filename
485 cord/cordxtra.o: cord $(srcdir)/cord/cordxtra.c $(CORD_INCLUDE_FILES)
486         $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordxtra.c
487         mv cordxtra.o cord/cordxtra.o
489 cord/cordprnt.o: cord $(srcdir)/cord/cordprnt.c $(CORD_INCLUDE_FILES)
490         $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordprnt.c
491         mv cordprnt.o cord/cordprnt.o
493 cord/cordtest: $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a $(UTILS)
494         rm -f cord/cordtest
495         ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a -lucb
496         ./if_mach HP_PA HPUX $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a -ldld `./threadlibs`
497         ./if_mach M68K AMIGA $(CC) $(CFLAGS) -UGC_AMIGA_MAKINGLIB -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a `./threadlibs`
498         ./if_not_there cord/cordtest $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a `./threadlibs`
500 cord/de: $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(UTILS)
501         rm -f cord/de
502         ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(CURSES) -lucb `./threadlibs`
503         ./if_mach HP_PA HPUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(CURSES) -ldld `./threadlibs`
504         ./if_mach RS6000 "" $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses
505         ./if_mach POWERPC MACOSX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a
506         ./if_mach I386 LINUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses `./threadlibs`
507         ./if_mach ALPHA LINUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses `./threadlibs`
508         ./if_mach IA64 LINUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses `./threadlibs`
509         ./if_mach M68K AMIGA $(CC) $(CFLAGS) -UGC_AMIGA_MAKINGLIB -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses
510         ./if_not_there cord/de $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(CURSES) `./threadlibs`
512 if_mach: $(srcdir)/if_mach.c $(srcdir)/include/private/gcconfig.h
513         $(HOSTCC) $(HOSTCFLAGS) -o if_mach $(srcdir)/if_mach.c
515 threadlibs: $(srcdir)/threadlibs.c $(srcdir)/include/private/gcconfig.h Makefile
516         $(HOSTCC) $(HOSTCFLAGS) -o threadlibs $(srcdir)/threadlibs.c
518 if_not_there: $(srcdir)/if_not_there.c
519         $(HOSTCC) $(HOSTCFLAGS) -o if_not_there $(srcdir)/if_not_there.c
521 clean: 
522         rm -f gc.a *.o *.exe tests/*.o gctest gctest_dyn_link test_cpp \
523               setjmp_test  mon.out gmon.out a.out core if_not_there if_mach \
524               threadlibs $(CORD_OBJS) cord/cordtest cord/de
525         -rm -f *~
527 gctest: tests/test.o gc.a $(UTILS)
528         rm -f gctest
529         ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o gctest  tests/test.o gc.a -lucb
530         ./if_mach HP_PA HPUX $(CC) $(CFLAGS) -o gctest  tests/test.o gc.a -ldld `./threadlibs`
531         ./if_mach M68K AMIGA $(CC) $(CFLAGS) -UGC_AMIGA_MAKINGLIB -o gctest  tests/test.o gc.a `./threadlibs`
532         ./if_not_there gctest $(CC) $(CFLAGS) -o gctest tests/test.o gc.a `./threadlibs`
534 # If an optimized setjmp_test generates a segmentation fault,
535 # odds are your compiler is broken.  Gctest may still work.
536 # Try compiling setjmp_t.c unoptimized.
537 setjmp_test: $(srcdir)/setjmp_t.c $(srcdir)/include/gc.h $(UTILS)
538         $(CC) $(CFLAGS) -o setjmp_test $(srcdir)/setjmp_t.c
540 test:  KandRtest cord/cordtest
541         cord/cordtest
543 # Those tests that work even with a K&R C compiler:
544 KandRtest: setjmp_test gctest
545         ./setjmp_test
546         ./gctest
548 add_gc_prefix: $(srcdir)/add_gc_prefix.c $(srcdir)/version.h
549         $(CC) -o add_gc_prefix $(srcdir)/add_gc_prefix.c
551 gcname: $(srcdir)/gcname.c $(srcdir)/version.h
552         $(CC) -o gcname $(srcdir)/gcname.c
554 gc.tar: $(SRCS) $(DOC_FILES) $(OTHER_FILES) add_gc_prefix gcname
555         cp Makefile Makefile.old
556         cp Makefile.direct Makefile
557         rm -f `./gcname`
558         ln -s . `./gcname`
559         ./add_gc_prefix $(SRCS) $(DOC_FILES) $(OTHER_FILES) > /tmp/gc.tar-files
560         tar cvfh gc.tar `cat /tmp/gc.tar-files`
561         cp gc.tar `./gcname`.tar
562         gzip `./gcname`.tar
563         rm `./gcname`
565 pc_gc.tar: $(SRCS) $(OTHER_FILES)
566         tar cvfX pc_gc.tar pc_excludes $(SRCS) $(OTHER_FILES)
568 floppy: pc_gc.tar
569         -mmd a:/cord
570         -mmd a:/cord/private
571         -mmd a:/include
572         -mmd a:/include/private
573         mkdir /tmp/pc_gc
574         cat pc_gc.tar | (cd /tmp/pc_gc; tar xvf -)
575         -mcopy -tmn /tmp/pc_gc/* a:
576         -mcopy -tmn /tmp/pc_gc/cord/* a:/cord
577         -mcopy -mn /tmp/pc_gc/cord/de_win.ICO a:/cord
578         -mcopy -tmn /tmp/pc_gc/cord/private/* a:/cord/private
579         -mcopy -tmn /tmp/pc_gc/include/* a:/include
580         -mcopy -tmn /tmp/pc_gc/include/private/* a:/include/private
581         rm -r /tmp/pc_gc
583 gc.tar.Z: gc.tar
584         compress gc.tar
586 gc.tar.gz: gc.tar
587         gzip gc.tar
589 lint: $(CSRCS) tests/test.c
590         lint -DLINT $(CSRCS) tests/test.c | egrep -v "possible pointer alignment problem|abort|exit|sbrk|mprotect|syscall|change in ANSI|improper alignment"
592 # BTL: added to test shared library version of collector.
593 # Currently works only under SunOS5.  Requires GC_INIT call from statically
594 # loaded client code.
595 ABSDIR = `pwd`
596 gctest_dyn_link: tests/test.o libgc.so
597         $(CC) -L$(ABSDIR) -R$(ABSDIR) -o gctest_dyn_link tests/test.o -lgc -ldl -lthread
599 gctest_irix_dyn_link: tests/test.o libirixgc.so
600         $(CC) -L$(ABSDIR) -o gctest_irix_dyn_link tests/test.o -lirixgc
602 # The following appear to be dead, especially since libgc_globals.h
603 # is apparently lost.
604 test_dll.o: tests/test.c libgc_globals.h
605         $(CC) $(CFLAGS) -DGC_USE_DLL -c tests/test.c -o test_dll.o
607 test_dll: test_dll.o libgc_dll.a libgc.dll
608         $(CC) test_dll.o -L$(ABSDIR) -lgc_dll -o test_dll
610 SYM_PREFIX-libgc=GC
612 # Uncomment the following line to build a GNU win32 DLL
613 # include Makefile.DLLs
615 reserved_namespace: $(SRCS)
616         for file in $(SRCS) tests/test.c tests/test_cpp.cc; do \
617                 sed s/GC_/_GC_/g < $$file > tmp; \
618                 cp tmp $$file; \
619                 done
621 user_namespace: $(SRCS)
622         for file in $(SRCS) tests/test.c tests/test_cpp.cc; do \
623                 sed s/_GC_/GC_/g < $$file > tmp; \
624                 cp tmp $$file; \
625                 done