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
20c96b2a
Commit
20c96b2a
authored
Aug 25, 1999
by
Tom Tromey
Committed by
Tom Tromey
Aug 25, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* jvspec.c (lang_specific_driver): Correctly handle --help again.
From-SVN: r28869
parent
e0485b85
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
gcc/java/ChangeLog
+4
-0
gcc/java/jvspec.c
+6
-2
No files found.
gcc/java/ChangeLog
View file @
20c96b2a
1999-08-25 Tom Tromey <tromey@cygnus.com>
* jvspec.c (lang_specific_driver): Correctly handle --help again.
1999-08-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1999-08-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gjavah.c (print_name, print_base_classname, utf8_cmp,
* gjavah.c (print_name, print_base_classname, utf8_cmp,
...
...
gcc/java/jvspec.c
View file @
20c96b2a
...
@@ -190,6 +190,9 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
...
@@ -190,6 +190,9 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
/* Non-zero if linking is supposed to happen. */
/* Non-zero if linking is supposed to happen. */
int
will_link
=
1
;
int
will_link
=
1
;
/* Non-zero if we want to find the spec file. */
int
want_spec_file
=
1
;
/* The argument we use to specify the spec file. */
/* The argument we use to specify the spec file. */
char
*
spec_file
=
NULL
;
char
*
spec_file
=
NULL
;
...
@@ -228,7 +231,7 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
...
@@ -228,7 +231,7 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
added
--
;
added
--
;
}
}
else
if
(
strcmp
(
argv
[
i
],
"-fhelp"
)
==
0
)
else
if
(
strcmp
(
argv
[
i
],
"-fhelp"
)
==
0
)
w
ill_link
=
0
;
w
ant_spec_file
=
0
;
else
if
(
strcmp
(
argv
[
i
],
"-v"
)
==
0
)
else
if
(
strcmp
(
argv
[
i
],
"-v"
)
==
0
)
{
{
saw_verbose_flag
=
1
;
saw_verbose_flag
=
1
;
...
@@ -244,6 +247,7 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
...
@@ -244,6 +247,7 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
else
if
(
strcmp
(
argv
[
i
],
"-C"
)
==
0
)
else
if
(
strcmp
(
argv
[
i
],
"-C"
)
==
0
)
{
{
saw_C
=
1
;
saw_C
=
1
;
want_spec_file
=
0
;
#if COMBINE_INPUTS
#if COMBINE_INPUTS
combine_inputs
=
1
;
combine_inputs
=
1
;
#endif
#endif
...
@@ -459,7 +463,7 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
...
@@ -459,7 +463,7 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
/* Read the specs file corresponding to libgcj.
/* Read the specs file corresponding to libgcj.
If we didn't find the spec file on the -L path, then we hope it
If we didn't find the spec file on the -L path, then we hope it
is somewhere in the standard install areas. */
is somewhere in the standard install areas. */
if
(
!
saw_C
)
if
(
want_spec_file
)
arglist
[
j
++
]
=
spec_file
==
NULL
?
"-specs=libgcj.spec"
:
spec_file
;
arglist
[
j
++
]
=
spec_file
==
NULL
?
"-specs=libgcj.spec"
:
spec_file
;
if
(
saw_C
)
if
(
saw_C
)
...
...
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