1 Garbage Collector (parallel version) for x86 DG/UX Release R4.20MU07
2 3 4 *READ* the file README.md first.
5 6 You need the GCC-3.0.3 rev (DG/UX) compiler to build this tree.
7 This compiler has the new "dgux386" threads package implemented.
8 It also supports the switch "-pthread" needed to link correctly
9 the DG/UX's -lrte -lthread with -lgcc and the system's -lc.
10 Finally, we support parallel mark for the SMP DG/UX machines.
11 To build the garbage collector do:
12 13 ./configure
14 make
15 make gctest
16 17 Before you run "gctest" you need to set your LD_LIBRARY_PATH
18 correctly so that "gctest" can find the shared library libgc.
19 Alternatively you can do a configuration
20 21 ./configure --disable-shared
22 23 to build only the static version of libgc.
24 25 To enable debugging messages please do:
26 1) Add the "--enable-gc-debug" flag during configuration.
27 2) Pass "CFLAGS=-DDEBUG_THREADS" to "make".
28 29 In a machine with 4 CPUs (my own machine), parallel mark makes
30 a BIG difference.
31 32 Takis Psarogiannakopoulos
33 34 Note (HB):
35 The integration of this patch is currently not complete.
36 The following patches against 6.1alpha3 where hard to move
37 to alpha4, and are not integrated. There may also be minor
38 problems with stylistic corrections made by me.
39 [The diff for ltconfig and ltmain.sh was removed from this file on 2011-08-22]
40