comparison gc/Makefile.direct @ 51488:5de98dce4bd1

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