Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
09dd71fc
Commit
09dd71fc
authored
Jun 23, 1999
by
Tom Tromey
Committed by
Tom Tromey
Jun 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lib/libjava.exp (libjava_arguments): Handle -lzgcj.
From-SVN: r27721
parent
2f9fb4c2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
libjava/testsuite/ChangeLog
+4
-0
libjava/testsuite/lib/libjava.exp
+10
-0
No files found.
libjava/testsuite/ChangeLog
View file @
09dd71fc
1999-06-23 Tom Tromey <tromey@cygnus.com>
* lib/libjava.exp (libjava_arguments): Handle -lzgcj.
1999-05-24 Anthony Green <green@cygnus.com>
* libjava.lang/Shazam.java: New file.
...
...
libjava/testsuite/lib/libjava.exp
View file @
09dd71fc
...
...
@@ -111,6 +111,8 @@ proc libjava_arguments {{mode compile}} {
global base_dir
global LIBJAVA
global LIBGC
global LIBQTHREADS
global LIBZ
global srcdir subdir objdir
global TOOL_OPTIONS
global GCJ_UNDER_TEST
...
...
@@ -135,6 +137,12 @@ proc libjava_arguments {{mode compile}} {
set libqthreads [libjava_find_lib qthreads gcjcoop]
}
if [info exists LIBZ] {
set libz $LIBZ
} else {
set libz [libjava_find_lib zlib zgcj]
}
# FIXME: there's no way to determine whether -lpthread is
# required. We should get this info from configure, or it should
# just be in the compiler driver.
...
...
@@ -142,6 +150,7 @@ proc libjava_arguments {{mode compile}} {
verbose "using LIBJAVA = $libjava" 2
verbose "using LIBGC = $libgc" 2
verbose "using LIBQTHREADS = $libqthreads" 2
verbose "using LIBZ = $libz" 2
set args ""
# Basically we want to build up a colon separated path list from
...
...
@@ -178,6 +187,7 @@ proc libjava_arguments {{mode compile}} {
lappend args "libs=$libjava";
lappend args "libs=$libgc";
lappend args "libs=$libqthreads"
lappend args "libs=$libz"
lappend args debug
if { [target_info needs_status_wrapper]!="" && [info exists gluefile] } {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment