source: trunk/src/gcc/boehm-gc/Makefile.direct@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

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