OSDN Git Service

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