diff: another fix for interactive queries on Linux

Fergus Henderson fjh at cs.mu.OZ.AU
Mon Mar 29 20:59:40 AEST 1999


Estimated hours taken: 0.25

tests/debugger/Mmakefile:
	Pass the appropriate options to ensure that queens.m
	is compiled with shared libraries on Linux.  This is
	necessary because interactive queries only work if you
	use shared libraries.

Index: tests/debugger/Mmakefile
===================================================================
RCS file: /home/mercury1/repository/tests/debugger/Mmakefile,v
retrieving revision 1.18
diff -u -r1.18 Mmakefile
--- Mmakefile	1999/03/25 22:24:57	1.18
+++ Mmakefile	1999/03/29 10:56:51
@@ -28,6 +28,11 @@
 MLFLAGS = --trace
 C2INITFLAGS = --trace
 
+# We need to use shared libraries for interactive queries to work.
+# The following is necessary for shared libraries to work on Linux.
+MGNUCFLAGS-queens = --pic-reg
+MLFLAGS-queens = --shared
+
 # Base grades `jump' and `fast' cannot be used with
 # stack layouts (which are required for tracing).
 

-- 
Fergus Henderson <fjh at cs.mu.oz.au>  |  "I have always known that the pursuit
WWW: <http://www.cs.mu.oz.au/~fjh>  |  of excellence is a lethal habit"
PGP: finger fjh at 128.250.37.3        |     -- the last words of T. S. Garp.



More information about the developers mailing list