This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: PATCH: Build testsuite executables with -no-install




On 5 Jun 2001, Tom Tromey wrote:
> Mention the proc names in the ChangeLog entry.
> tcl-mode ought to do this for you automatically.
> Well, if you're using Emacs with the right Tcl mode.

If I used emacs at all, indeed.

Here's what I committed to the trunk:


2001-06-05  Jeff Sturm  <jsturm@one-point.com>

	* lib/libjava.exp (libjava_arguments): Build with `-no-install'
	when $mode == "link".

Index: lib/libjava.exp
===================================================================
RCS file: /cvs/gcc/gcc/libjava/testsuite/lib/libjava.exp,v
retrieving revision 1.27
diff -u -p -r1.27 libjava.exp
--- libjava.exp	2001/06/02 19:13:52	1.27
+++ libjava.exp	2001/06/06 02:49:58
@@ -313,6 +313,11 @@ proc libjava_arguments {{mode compile}} 
 	lappend args "compiler=$GCJ_UNDER_TEST -B$objdir/../"
     }
 
+    # Avoid libtool wrapper scripts when possible.
+    if {$mode == "link"} {
+        lappend args "additional_flags=-no-install"
+    }
+
     return $args
 }
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]