diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-02 12:26:00 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-02 12:26:00 +0000 |
commit | 19dcb05b64dac1b3f6b41b66fbf6335bfcaa4926 (patch) | |
tree | 9d31c155fc6533acc82d406f6aeb96eb7ad549f9 /gcc/config/alpha/osf.h | |
parent | eaf45f93c4ee922dbe317b8b9d7e180641fc86a8 (diff) | |
download | gcc-19dcb05b64dac1b3f6b41b66fbf6335bfcaa4926.tar.gz |
* gcc.c (set_collect_gcc_options): New function, split out from
main.
Ignore elided switches.
(do_spec_1): Invoke before executing command.
(set_input): Export.
Move declaration ...
* gcc.h (set_input): ... here.
* config/alpha/osf.h (ASM_FINAL_SPEC): Use %U.s to refer to input
file.
java:
* jvspec.c (jvgenmain_spec): Cannot use %umain, breaks
ASM_FINAL_SPEC.
(lang_specific_pre_link): Use set_input to set input_filename.
Append `main' here.
* jvgenmain.c (usage): Append literal `main' to CLASSNAME.
(main): Fix definition.
Strip `main' from classname.
Fixes PR java/227.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44572 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/alpha/osf.h')
-rw-r--r-- | gcc/config/alpha/osf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/osf.h b/gcc/config/alpha/osf.h index 250974c46e7..4386f561bc6 100644 --- a/gcc/config/alpha/osf.h +++ b/gcc/config/alpha/osf.h @@ -121,7 +121,7 @@ Boston, MA 02111-1307, USA. */ %{K: -I %b.o~} \ %{!K: %{save-temps: -I %b.o~}} \ %{c:%W{o*}%{!o*:-o %b.o}}%{!c:-o %U.o} \ - %{.s:%i} %{!.s:%g.s}}}" + %{.s:%i} %{!.s:%U.s}}}" #else #define ASM_FINAL_SPEC "\ @@ -130,7 +130,7 @@ Boston, MA 02111-1307, USA. */ %{K: -I %b.o~} \ %{!K: %{save-temps: -I %b.o~}} \ %{c:%W{o*}%{!o*:-o %b.o}}%{!c:-o %U.o} \ - %{.s:%i} %{!.s:%g.s}}}" + %{.s:%i} %{!.s:%U.s}}}" #endif |