72dd4133222945d92b350d8c20f7a8e90b3ad69a
[gcc.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 # 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 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
39
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)
46
47 # For dynamic library builds, it may be necessary to add flags to generate
48 # PIC code, e.g. -fPIC on Linux.
49
50 # Setjmp_test may yield overly optimistic results when compiled
51 # without optimization.
52
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 defined
107 # as aliases for X, GC_realloc, and GC_free, respectively.
108 # Calloc is 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.)
118 # -DREDIRECT_REALLOC=X causes GC_realloc to be redirected to X.
119 # The canonical use is -DREDIRECT_REALLOC=GC_debug_realloc_replacement,
120 # together with -DREDIRECT_MALLOC=GC_debug_malloc_replacement to
121 # generate leak reports with call stacks for both malloc and realloc.
122 # -DIGNORE_FREE turns calls to free into a noop. Only useful with
123 # -DREDIRECT_MALLOC.
124 # -DNO_DEBUGGING removes GC_dump and the debugging routines it calls.
125 # Reduces code size slightly at the expense of debuggability.
126 # -DJAVA_FINALIZATION makes it somewhat safer to finalize objects out of
127 # order by specifying a nonstandard finalization mark procedure (see
128 # finalize.c). Objects reachable from finalizable objects will be marked
129 # in a sepearte postpass, and hence their memory won't be reclaimed.
130 # Not recommended unless you are implementing a language that specifies
131 # these semantics. Since 5.0, determines only only the initial value
132 # of GC_java_finalization variable.
133 # -DFINALIZE_ON_DEMAND causes finalizers to be run only in response
134 # to explicit GC_invoke_finalizers() calls.
135 # In 5.0 this became runtime adjustable, and this only determines the
136 # initial value of GC_finalize_on_demand.
137 # -DATOMIC_UNCOLLECTABLE includes code for GC_malloc_atomic_uncollectable.
138 # This is useful if either the vendor malloc implementation is poor,
139 # or if REDIRECT_MALLOC is used.
140 # -DHBLKSIZE=ddd, where ddd is a power of 2 between 512 and 16384, explicitly
141 # sets the heap block size. Each heap block is devoted to a single size and
142 # kind of object. For the incremental collector it makes sense to match
143 # the most likely page size. Otherwise large values result in more
144 # fragmentation, but generally better performance for large heaps.
145 # -DUSE_MMAP use MMAP instead of sbrk to get new memory.
146 # Works for Solaris and Irix.
147 # -DUSE_MUNMAP causes memory to be returned to the OS under the right
148 # circumstances. This currently disables VM-based incremental collection.
149 # This is currently experimental, and works only under some Unix and
150 # Linux versions.
151 # -DMMAP_STACKS (for Solaris threads) Use mmap from /dev/zero rather than
152 # GC_scratch_alloc() to get stack memory.
153 # -DPRINT_BLACK_LIST Whenever a black list entry is added, i.e. whenever
154 # the garbage collector detects a value that looks almost, but not quite,
155 # like a pointer, print both the address containing the value, and the
156 # value of the near-bogus-pointer. Can be used to identifiy regions of
157 # memory that are likely to contribute misidentified pointers.
158 # -DKEEP_BACK_PTRS Add code to save back pointers in debugging headers
159 # for objects allocated with the debugging allocator. If all objects
160 # through GC_MALLOC with GC_DEBUG defined, this allows the client
161 # to determine how particular or randomly chosen objects are reachable
162 # for debugging/profiling purposes. The gc_backptr.h interface is
163 # implemented only if this is defined.
164 # -DGC_ASSERTIONS Enable some internal GC assertion checking. Currently
165 # this facility is only used in a few places. It is intended primarily
166 # for debugging of the garbage collector itself, but could also
167 # -DDBG_HDRS_ALL Make sure that all objects have debug headers. Increases
168 # the reliability (from 99.9999% to 100%) of some of the debugging
169 # code (especially KEEP_BACK_PTRS). Makes -DSHORT_DBG_HDRS possible.
170 # Assumes that all client allocation is done through debugging
171 # allocators.
172 # -DSHORT_DBG_HDRS Assume that all objects have debug headers. Shorten
173 # the headers to minimize object size, at the expense of checking for
174 # writes past the end of an object. This is intended for environments
175 # in which most client code is written in a "safe" language, such as
176 # Scheme or Java. Assumes that all client allocation is done using
177 # the GC_debug_ functions, or through the macros that expand to these,
178 # or by redirecting malloc to GC_debug_malloc_replacement.
179 # (Also eliminates the field for the requested object size.)
180 # occasionally be useful for debugging of client code. Slows down the
181 # collector somewhat, but not drastically.
182 # -DSAVE_CALL_COUNT=<n> Set the number of call frames saved with objects
183 # allocated through the debugging interface. Affects the amount of
184 # information generated in leak reports. Only matters on platforms
185 # on which we can quickly generate call stacks, currently Linux/(X86 & SPARC)
186 # and Solaris/SPARC. Turns on call chain saving on X86. On X86, client
187 # code should NOT be compiled with -fomit-frame-pointer.
188 # -DCHECKSUMS reports on erroneously clear dirty bits, and unexpectedly
189 # altered stubborn objects, at substantial performance cost.
190 # Use only for debugging of the incremental collector.
191 # -DGC_GCJ_SUPPORT includes support for gcj (and possibly other systems
192 # that include a pointer to a type descriptor in each allocated object).
193 # Building this way requires an ANSI C compiler.
194 # -DUSE_I686_PREFETCH causes the collector to issue Pentium III style
195 # prefetch instructions. No effect except on X86 Linux platforms.
196 # Assumes a very recent gcc-compatible compiler and assembler.
197 # (Gas prefetcht0 support was added around May 1999.)
198 # Empirically the code appears to still run correctly on Pentium II
199 # processors, though with no performance benefit. May not run on other
200 # X86 processors? In some cases this improves performance by
201 # 15% or so.
202 # -DUSE_3DNOW_PREFETCH causes the collector to issue AMD 3DNow style
203 # prefetch instructions. Same restrictions as USE_I686_PREFETCH.
204 # Minimally tested. Didn't appear to be an obvious win on a K6-2/500.
205 # -DGC_USE_LD_WRAP in combination with the old flags listed in README.linux
206 # causes the collector some system and pthread calls in a more transparent
207 # fashion than the usual macro-based approach. Requires GNU ld, and
208 # currently probably works only with Linux.
209 # -DTHREAD_LOCAL_ALLOC defines GC_local_malloc(), GC_local_malloc_atomic()
210 # and GC_local_gcj_malloc(). Needed for gc_gcj.h interface. These allocate
211 # in a way that usually does not involve acquisition of a global lock.
212 # Currently requires -DGC_LINUX_THREADS, but should be easy to port to
213 # other pthreads environments. Recommended for multiprocessors.
214 # -DPARALLEL_MARK allows the marker to run in multiple threads. Recommended
215 # for multiprocessors. Currently requires Linux on X86 or IA64, though
216 # support for other Posix platforms should be fairly easy to add,
217 # if the thread implementation is otherwise supported.
218 # -DNO_GETENV prevents the collector from looking at environment variables.
219 # These may otherwise alter its configuration, or turn off GC altogether.
220 # I don't know of a reason to disable this, except possibly if the
221 # resulting process runs as a privileged user?
222 # -DSTUBBORN_ALLOC allows allocation of "hard to change" objects, and thus
223 # makes incremental collection easier. Was enabled by default until 6.0.
224 # Rarely used, to my knowledge.
225 #
226
227 CXXFLAGS= $(CFLAGS)
228 AR= ar
229 RANLIB= ranlib
230
231
232 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
233
234 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
235
236 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
237
238 CORD_OBJS= cord/cordbscs.o cord/cordxtra.o cord/cordprnt.o
239
240 SRCS= $(CSRCS) mips_sgi_mach_dep.s rs6000_mach_dep.s alpha_mach_dep.s \
241 sparc_mach_dep.s include/gc.h include/gc_typed.h \
242 include/private/gc_hdrs.h include/private/gc_priv.h \
243 include/private/gcconfig.h include/private/gc_pmark.h \
244 include/gc_inl.h include/gc_inline.h include/gc_mark.h \
245 threadlibs.c if_mach.c if_not_there.c gc_cpp.cc include/gc_cpp.h \
246 gcname.c include/weakpointer.h include/private/gc_locks.h \
247 gcc_support.c mips_ultrix_mach_dep.s include/gc_alloc.h \
248 include/new_gc_alloc.h include/javaxfc.h sparc_sunos4_mach_dep.s \
249 sparc_netbsd_mach_dep.s \
250 include/private/solaris_threads.h include/gc_backptr.h \
251 hpux_test_and_clear.s include/gc_gcj.h \
252 include/gc_local_alloc.h include/private/dbg_mlc.h \
253 include/private/specific.h powerpc_macosx_mach_dep.s \
254 include/leak_detector.h include/gc_amiga_redirects.h \
255 include/gc_pthread_redirects.h ia64_save_regs_in_stack.s \
256 $(CORD_SRCS)
257
258 DOC_FILES= README.QUICK doc/README.Mac doc/README.MacOSX doc/README.OS2 \
259 doc/README.amiga doc/README.cords doc/debugging.html \
260 doc/README.dj doc/README.hp doc/README.linux doc/README.rs6000 \
261 doc/README.sgi doc/README.solaris2 doc/README.uts \
262 doc/README.win32 doc/barrett_diagram doc/README \
263 doc/README.contributors doc/README.changes doc/gc.man \
264 doc/README.environment doc/tree.html doc/gcdescr.html \
265 doc/README.autoconf doc/README.macros
266
267 TESTS= tests/test.c tests/test_cpp.cc tests/trace_test.c \
268 tests/leak_test.c tests/thread_leak_test.c
269
270 GNU_BUILD_FILES= configure.in Makefile.am configure acinclude.m4 \
271 libtool.m4 install-sh configure.host Makefile.in \
272 aclocal.m4 config.sub config.guess ltconfig \
273 ltmain.sh mkinstalldirs
274
275 OTHER_MAKEFILES= OS2_MAKEFILE NT_MAKEFILE NT_THREADS_MAKEFILE gc.mak \
276 BCC_MAKEFILE EMX_MAKEFILE WCC_MAKEFILE Makefile.dj \
277 PCR-Makefile SMakefile.amiga Makefile.DLLs \
278 digimars.mak Makefile.direct
279 # Makefile and Makefile.direct are copies of each other.
280
281 OTHER_FILES= Makefile setjmp_t.c callprocs pc_excludes \
282 MacProjects.sit.hqx MacOS.c \
283 Mac_files/datastart.c Mac_files/dataend.c \
284 Mac_files/MacOS_config.h Mac_files/MacOS_Test_config.h \
285 add_gc_prefix.c gc_cpp.cpp win32_threads.c \
286 version.h AmigaOS.c \
287 $(TESTS) $(GNU_BUILD_FILES) $(OTHER_MAKEFILES)
288
289 CORD_INCLUDE_FILES= $(srcdir)/include/gc.h $(srcdir)/include/cord.h \
290 $(srcdir)/include/ec.h $(srcdir)/include/private/cord_pos.h
291
292 UTILS= if_mach if_not_there threadlibs
293
294 # Libraries needed for curses applications. Only needed for de.
295 CURSES= -lcurses -ltermlib
296
297 # The following is irrelevant on most systems. But a few
298 # versions of make otherwise fork the shell specified in
299 # the SHELL environment variable.
300 SHELL= /bin/sh
301
302 SPECIALCFLAGS = -I$(srcdir)/include
303 # Alternative flags to the C compiler for mach_dep.c.
304 # Mach_dep.c often doesn't like optimization, and it's
305 # not time-critical anyway.
306 # Set SPECIALCFLAGS to -q nodirect_code on Encore.
307
308 all: gc.a gctest
309
310 BSD-pkg-all: bsd-libgc.a
311
312 bsd-libgc.a:
313 $(MAKE) CFLAGS="$(CFLAGS)" clean c++-t
314 mv gc.a bsd-libgc.a
315
316 BSD-pkg-install: BSD-pkg-all
317 ${CP} bsd-libgc.a libgc.a
318 ${INSTALL_DATA} libgc.a ${PREFIX}/lib
319 ${INSTALL_DATA} gc.h gc_cpp.h ${PREFIX}/include
320
321 pcr: PCR-Makefile include/private/gc_private.h include/private/gc_hdrs.h \
322 include/private/gc_locks.h include/gc.h include/private/gcconfig.h \
323 mach_dep.o $(SRCS)
324 $(MAKE) -f PCR-Makefile depend
325 $(MAKE) -f PCR-Makefile
326
327 $(OBJS) tests/test.o dyn_load.o dyn_load_sunos53.o: \
328 $(srcdir)/include/private/gc_priv.h \
329 $(srcdir)/include/private/gc_hdrs.h $(srcdir)/include/private/gc_locks.h \
330 $(srcdir)/include/gc.h \
331 $(srcdir)/include/private/gcconfig.h $(srcdir)/include/gc_typed.h \
332 Makefile
333 # The dependency on Makefile is needed. Changing
334 # options such as -DSILENT affects the size of GC_arrays,
335 # invalidating all .o files that rely on gc_priv.h
336
337 mark.o typd_mlc.o finalize.o ptr_chck.o: $(srcdir)/include/gc_mark.h $(srcdir)/include/private/gc_pmark.h
338
339 specific.o linux_threads.o: $(srcdir)/include/private/specific.h
340
341 solaris_threads.o solaris_pthreads.o: $(srcdir)/include/private/solaris_threads.h
342
343 dbg_mlc.o gcj_mlc.o: $(srcdir)/include/private/dbg_mlc.h
344
345 tests/test.o: tests $(srcdir)/tests/test.c
346 $(CC) $(CFLAGS) -c $(srcdir)/tests/test.c
347 mv test.o tests/test.o
348
349 tests:
350 mkdir tests
351
352 base_lib gc.a: $(OBJS) dyn_load.o $(UTILS)
353 echo > base_lib
354 rm -f dont_ar_1
355 ./if_mach SPARC SUNOS5 touch dont_ar_1
356 ./if_mach SPARC SUNOS5 $(AR) rus gc.a $(OBJS) dyn_load.o
357 ./if_mach M68K AMIGA touch dont_ar_1
358 ./if_mach M68K AMIGA $(AR) -vrus gc.a $(OBJS) dyn_load.o
359 ./if_not_there dont_ar_1 $(AR) ru gc.a $(OBJS) dyn_load.o
360 ./if_not_there dont_ar_1 $(RANLIB) gc.a || cat /dev/null
361 # ignore ranlib failure; that usually means it doesn't exist, and isn't needed
362
363 cords: $(CORD_OBJS) cord/cordtest $(UTILS)
364 rm -f dont_ar_3
365 ./if_mach SPARC SUNOS5 touch dont_ar_3
366 ./if_mach SPARC SUNOS5 $(AR) rus gc.a $(CORD_OBJS)
367 ./if_mach M68K AMIGA touch dont_ar_3
368 ./if_mach M68K AMIGA $(AR) -vrus gc.a $(CORD_OBJS)
369 ./if_not_there dont_ar_3 $(AR) ru gc.a $(CORD_OBJS)
370 ./if_not_there dont_ar_3 $(RANLIB) gc.a || cat /dev/null
371
372 gc_cpp.o: $(srcdir)/gc_cpp.cc $(srcdir)/include/gc_cpp.h $(srcdir)/include/gc.h Makefile
373 $(CXX) -c $(CXXFLAGS) $(srcdir)/gc_cpp.cc
374
375 test_cpp: $(srcdir)/tests/test_cpp.cc $(srcdir)/include/gc_cpp.h gc_cpp.o $(srcdir)/include/gc.h \
376 base_lib $(UTILS)
377 rm -f test_cpp
378 ./if_mach HP_PA HPUX $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/tests/test_cpp.cc gc_cpp.o gc.a -ldld `./threadlibs`
379 ./if_not_there test_cpp $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/tests/test_cpp.cc gc_cpp.o gc.a `./threadlibs`
380
381 c++-t: c++
382 ./test_cpp 1
383
384 c++-nt: c++
385 @echo "Use ./test_cpp 1 to test the leak library"
386
387 c++: gc_cpp.o $(srcdir)/include/gc_cpp.h test_cpp
388 rm -f dont_ar_4
389 ./if_mach SPARC SUNOS5 touch dont_ar_4
390 ./if_mach SPARC SUNOS5 $(AR) rus gc.a gc_cpp.o
391 ./if_mach M68K AMIGA touch dont_ar_4
392 ./if_mach M68K AMIGA $(AR) -vrus gc.a gc_cpp.o
393 ./if_not_there dont_ar_4 $(AR) ru gc.a gc_cpp.o
394 ./if_not_there dont_ar_4 $(RANLIB) gc.a || cat /dev/null
395 ./test_cpp 1
396 echo > c++
397
398 dyn_load_sunos53.o: dyn_load.c
399 $(CC) $(CFLAGS) -DSUNOS53_SHARED_LIB -c $(srcdir)/dyn_load.c -o $@
400
401 # SunOS5 shared library version of the collector
402 sunos5gc.so: $(OBJS) dyn_load_sunos53.o
403 $(CC) -G -o sunos5gc.so $(OBJS) dyn_load_sunos53.o -ldl
404 ln sunos5gc.so libgc.so
405
406 # Alpha/OSF shared library version of the collector
407 libalphagc.so: $(OBJS)
408 ld -shared -o libalphagc.so $(OBJS) dyn_load.o -lc
409 ln libalphagc.so libgc.so
410
411 # IRIX shared library version of the collector
412 libirixgc.so: $(OBJS) dyn_load.o
413 ld -shared $(ABI_FLAG) -o libirixgc.so $(OBJS) dyn_load.o -lc
414 ln libirixgc.so libgc.so
415
416 # Linux shared library version of the collector
417 liblinuxgc.so: $(OBJS) dyn_load.o
418 gcc -shared -o liblinuxgc.so $(OBJS) dyn_load.o
419 ln liblinuxgc.so libgc.so
420
421 # Alternative Linux rule. This is preferable, but is likely to break the
422 # Makefile for some non-linux platforms.
423 # LIBOBJS= $(patsubst %.o, %.lo, $(OBJS))
424 #
425 #.SUFFIXES: .lo $(SUFFIXES)
426 #
427 #.c.lo:
428 # $(CC) $(CFLAGS) $(CPPFLAGS) -fPIC -c $< -o $@
429 #
430 # liblinuxgc.so: $(LIBOBJS) dyn_load.lo
431 # gcc -shared -Wl,-soname=libgc.so.0 -o libgc.so.0 $(LIBOBJS) dyn_load.lo
432 # touch liblinuxgc.so
433
434 mach_dep.o: $(srcdir)/mach_dep.c $(srcdir)/mips_sgi_mach_dep.s $(srcdir)/mips_ultrix_mach_dep.s \
435 $(srcdir)/rs6000_mach_dep.s $(srcdir)/powerpc_macosx_mach_dep.s $(UTILS)
436 rm -f mach_dep.o
437 ./if_mach MIPS IRIX5 $(AS) -o mach_dep.o $(srcdir)/mips_sgi_mach_dep.s
438 ./if_mach MIPS RISCOS $(AS) -o mach_dep.o $(srcdir)/mips_ultrix_mach_dep.s
439 ./if_mach MIPS ULTRIX $(AS) -o mach_dep.o $(srcdir)/mips_ultrix_mach_dep.s
440 ./if_mach RS6000 "" $(AS) -o mach_dep.o $(srcdir)/rs6000_mach_dep.s
441 ./if_mach POWERPC MACOSX $(AS) -o mach_dep.o $(srcdir)/powerpc_macosx_mach_dep.s
442 # ./if_mach ALPHA "" $(AS) -o mach_dep.o $(srcdir)/alpha_mach_dep.s
443 # alpha_mach_dep.s assumes that pointers are not saved in fp registers.
444 # Gcc on a 21264 can spill pointers to fp registers. Oops.
445 ./if_mach SPARC SUNOS5 $(AS) -o mach_dep.o $(srcdir)/sparc_mach_dep.s
446 ./if_mach SPARC SUNOS4 $(AS) -o mach_dep.o $(srcdir)/sparc_sunos4_mach_dep.s
447 ./if_mach SPARC OPENBSD $(AS) -o mach_dep.o $(srcdir)/sparc_sunos4_mach_dep.s
448 ./if_mach SPARC NETBSD $(AS) -o mach_dep.o $(srcdir)/sparc_netbsd_mach_dep.s
449 ./if_mach IA64 HPUX as $(AS_ABI_FLAG) -o ia64_save_regs_in_stack.o $(srcdir)/ia64_save_regs_in_stack.s
450 ./if_mach IA64 HPUX $(CC) -c -o mach_dep1.o $(SPECIALCFLAGS) $(srcdir)/mach_dep.c
451 ./if_mach IA64 HPUX ld -r -o mach_dep.o mach_dep1.o ia64_save_regs_in_stack.o
452 ./if_not_there mach_dep.o $(CC) -c $(SPECIALCFLAGS) $(srcdir)/mach_dep.c
453
454 mark_rts.o: $(srcdir)/mark_rts.c $(UTILS)
455 rm -f mark_rts.o
456 -./if_mach ALPHA OSF1 $(CC) -c $(CFLAGS) -Wo,-notail $(srcdir)/mark_rts.c
457 ./if_not_there mark_rts.o $(CC) -c $(CFLAGS) $(srcdir)/mark_rts.c
458 # Work-around for DEC optimizer tail recursion elimination bug.
459 # The ALPHA-specific line should be removed if gcc is used.
460
461 alloc.o: version.h
462
463 cord:
464 mkdir cord
465
466 cord/cordbscs.o: cord $(srcdir)/cord/cordbscs.c $(CORD_INCLUDE_FILES)
467 $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordbscs.c
468 mv cordbscs.o cord/cordbscs.o
469 # not all compilers understand -o filename
470
471 cord/cordxtra.o: cord $(srcdir)/cord/cordxtra.c $(CORD_INCLUDE_FILES)
472 $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordxtra.c
473 mv cordxtra.o cord/cordxtra.o
474
475 cord/cordprnt.o: cord $(srcdir)/cord/cordprnt.c $(CORD_INCLUDE_FILES)
476 $(CC) $(CFLAGS) -c -I$(srcdir) $(srcdir)/cord/cordprnt.c
477 mv cordprnt.o cord/cordprnt.o
478
479 cord/cordtest: $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a $(UTILS)
480 rm -f cord/cordtest
481 ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a -lucb
482 ./if_mach HP_PA HPUX $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a -ldld `./threadlibs`
483 ./if_mach M68K AMIGA $(CC) $(CFLAGS) -UGC_AMIGA_MAKINGLIB -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a `./threadlibs`
484 ./if_not_there cord/cordtest $(CC) $(CFLAGS) -o cord/cordtest $(srcdir)/cord/cordtest.c $(CORD_OBJS) gc.a `./threadlibs`
485
486 cord/de: $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(UTILS)
487 rm -f cord/de
488 ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(CURSES) -lucb `./threadlibs`
489 ./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`
490 ./if_mach RS6000 "" $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses
491 ./if_mach POWERPC MACOSX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a
492 ./if_mach I386 LINUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses `./threadlibs`
493 ./if_mach ALPHA LINUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses `./threadlibs`
494 ./if_mach IA64 LINUX $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a -lcurses `./threadlibs`
495 ./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
496 ./if_not_there cord/de $(CC) $(CFLAGS) -o cord/de $(srcdir)/cord/de.c cord/cordbscs.o cord/cordxtra.o gc.a $(CURSES) `./threadlibs`
497
498 if_mach: $(srcdir)/if_mach.c $(srcdir)/include/private/gcconfig.h
499 $(HOSTCC) $(HOSTCFLAGS) -o if_mach $(srcdir)/if_mach.c
500
501 threadlibs: $(srcdir)/threadlibs.c $(srcdir)/include/private/gcconfig.h Makefile
502 $(HOSTCC) $(HOSTCFLAGS) -o threadlibs $(srcdir)/threadlibs.c
503
504 if_not_there: $(srcdir)/if_not_there.c
505 $(HOSTCC) $(HOSTCFLAGS) -o if_not_there $(srcdir)/if_not_there.c
506
507 clean:
508 rm -f gc.a *.o *.exe tests/*.o gctest gctest_dyn_link test_cpp \
509 setjmp_test mon.out gmon.out a.out core if_not_there if_mach \
510 threadlibs $(CORD_OBJS) cord/cordtest cord/de
511 -rm -f *~
512
513 gctest: tests/test.o gc.a $(UTILS)
514 rm -f gctest
515 ./if_mach SPARC DRSNX $(CC) $(CFLAGS) -o gctest tests/test.o gc.a -lucb
516 ./if_mach HP_PA HPUX $(CC) $(CFLAGS) -o gctest tests/test.o gc.a -ldld `./threadlibs`
517 ./if_mach M68K AMIGA $(CC) $(CFLAGS) -UGC_AMIGA_MAKINGLIB -o gctest tests/test.o gc.a `./threadlibs`
518 ./if_not_there gctest $(CC) $(CFLAGS) -o gctest tests/test.o gc.a `./threadlibs`
519
520 # If an optimized setjmp_test generates a segmentation fault,
521 # odds are your compiler is broken. Gctest may still work.
522 # Try compiling setjmp_t.c unoptimized.
523 setjmp_test: $(srcdir)/setjmp_t.c $(srcdir)/include/gc.h $(UTILS)
524 $(CC) $(CFLAGS) -o setjmp_test $(srcdir)/setjmp_t.c
525
526 test: KandRtest cord/cordtest
527 cord/cordtest
528
529 # Those tests that work even with a K&R C compiler:
530 KandRtest: setjmp_test gctest
531 ./setjmp_test
532 ./gctest
533
534 add_gc_prefix: $(srcdir)/add_gc_prefix.c $(srcdir)/version.h
535 $(CC) -o add_gc_prefix $(srcdir)/add_gc_prefix.c
536
537 gcname: $(srcdir)/gcname.c $(srcdir)/version.h
538 $(CC) -o gcname $(srcdir)/gcname.c
539
540 gc.tar: $(SRCS) $(DOC_FILES) $(OTHER_FILES) add_gc_prefix gcname
541 cp Makefile Makefile.old
542 cp Makefile.direct Makefile
543 rm -f `./gcname`
544 ln -s . `./gcname`
545 ./add_gc_prefix $(SRCS) $(DOC_FILES) $(OTHER_FILES) > /tmp/gc.tar-files
546 tar cvfh gc.tar `cat /tmp/gc.tar-files`
547 cp gc.tar `./gcname`.tar
548 gzip `./gcname`.tar
549 rm `./gcname`
550
551 pc_gc.tar: $(SRCS) $(OTHER_FILES)
552 tar cvfX pc_gc.tar pc_excludes $(SRCS) $(OTHER_FILES)
553
554 floppy: pc_gc.tar
555 -mmd a:/cord
556 -mmd a:/cord/private
557 -mmd a:/include
558 -mmd a:/include/private
559 mkdir /tmp/pc_gc
560 cat pc_gc.tar | (cd /tmp/pc_gc; tar xvf -)
561 -mcopy -tmn /tmp/pc_gc/* a:
562 -mcopy -tmn /tmp/pc_gc/cord/* a:/cord
563 -mcopy -mn /tmp/pc_gc/cord/de_win.ICO a:/cord
564 -mcopy -tmn /tmp/pc_gc/cord/private/* a:/cord/private
565 -mcopy -tmn /tmp/pc_gc/include/* a:/include
566 -mcopy -tmn /tmp/pc_gc/include/private/* a:/include/private
567 rm -r /tmp/pc_gc
568
569 gc.tar.Z: gc.tar
570 compress gc.tar
571
572 gc.tar.gz: gc.tar
573 gzip gc.tar
574
575 lint: $(CSRCS) tests/test.c
576 lint -DLINT $(CSRCS) tests/test.c | egrep -v "possible pointer alignment problem|abort|exit|sbrk|mprotect|syscall|change in ANSI|improper alignment"
577
578 # BTL: added to test shared library version of collector.
579 # Currently works only under SunOS5. Requires GC_INIT call from statically
580 # loaded client code.
581 ABSDIR = `pwd`
582 gctest_dyn_link: tests/test.o libgc.so
583 $(CC) -L$(ABSDIR) -R$(ABSDIR) -o gctest_dyn_link tests/test.o -lgc -ldl -lthread
584
585 gctest_irix_dyn_link: tests/test.o libirixgc.so
586 $(CC) -L$(ABSDIR) -o gctest_irix_dyn_link tests/test.o -lirixgc
587
588 # The following appear to be dead, especially since libgc_globals.h
589 # is apparently lost.
590 test_dll.o: tests/test.c libgc_globals.h
591 $(CC) $(CFLAGS) -DGC_USE_DLL -c tests/test.c -o test_dll.o
592
593 test_dll: test_dll.o libgc_dll.a libgc.dll
594 $(CC) test_dll.o -L$(ABSDIR) -lgc_dll -o test_dll
595
596 SYM_PREFIX-libgc=GC
597
598 # Uncomment the following line to build a GNU win32 DLL
599 # include Makefile.DLLs
600
601 reserved_namespace: $(SRCS)
602 for file in $(SRCS) tests/test.c tests/test_cpp.cc; do \
603 sed s/GC_/_GC_/g < $$file > tmp; \
604 cp tmp $$file; \
605 done
606
607 user_namespace: $(SRCS)
608 for file in $(SRCS) tests/test.c tests/test_cpp.cc; do \
609 sed s/_GC_/GC_/g < $$file > tmp; \
610 cp tmp $$file; \
611 done