aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/jvspec.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@cygnus.com>1999-02-10 14:05:24 +0000
committerTom Tromey <tromey@gcc.gnu.org>1999-02-10 14:05:24 +0000
commit0ffe9eeafa01b3c71879de7f3b06e506547088f7 (patch)
tree4f0b44797c96918030e91b632d402fc62eaad469 /gcc/java/jvspec.c
parent21375863a04f7b758c1b9fa21df985c4333e453e (diff)
downloadgcc-0ffe9eeafa01b3c71879de7f3b06e506547088f7.zip
gcc-0ffe9eeafa01b3c71879de7f3b06e506547088f7.tar.gz
gcc-0ffe9eeafa01b3c71879de7f3b06e506547088f7.tar.bz2
jvspec.c (THREAD_NAME): Renamed -lqthreads to -lgcjcoop.
* jvspec.c (THREAD_NAME): Renamed -lqthreads to -lgcjcoop. (GC_NAME): Renamed -lgc to -lgcjgc. From-SVN: r25135
Diffstat (limited to 'gcc/java/jvspec.c')
-rw-r--r--gcc/java/jvspec.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/java/jvspec.c b/gcc/java/jvspec.c
index 2d09db3..b63ebcd 100644
--- a/gcc/java/jvspec.c
+++ b/gcc/java/jvspec.c
@@ -32,11 +32,11 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
#if defined (WITH_THREAD_posix) || defined (WITH_THREAD_pthreads)
#define THREAD_NAME "-lpthread"
#elif defined (WITH_THREAD_qt)
-#define THREAD_NAME "-lqthreads"
+#define THREAD_NAME "-lgcjcoop"
#endif
#if defined (WITH_GC_boehm)
-#define GC_NAME "-lgc"
+#define GC_NAME "-lgcjgc"
#endif
/* This bit is set if we saw a `-xfoo' language specification. */
@@ -45,7 +45,7 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
#define MATHLIB (1<<2)
/* This bit is set if they did `-lc'. */
#define WITHLIBC (1<<3)
-/* This bit is set if they did `-lgc'. */
+/* This bit is set if they did `-lgcjgc'. */
#define GCLIB (1<<4)
/* This bit is set if they did `-lpthread' (or added some other thread
library). */
@@ -148,7 +148,7 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
/* "-lc" if it appears on the command line. */
char *saw_libc = 0;
- /* "-lgc" if it appears on the command line. */
+ /* "-lgcjgc" if it appears on the command line. */
char *saw_gc = 0;
/* Saw `-l' option for the thread library. */
@@ -453,7 +453,7 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
saw_libc = argv[i];
}
- /* And -ljava must come before -lgc. */
+ /* And -ljava must come before -lgcjgc. */
if (!saw_gc && (args[i] & GCLIB) && library)
{
--j;