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
cc6fc442
Commit
cc6fc442
authored
Sep 03, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(process_command): Correct for spaz by patch, installing last change.
From-SVN: r2045
parent
86543c6e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
gcc/gcc.c
+12
-12
No files found.
gcc/gcc.c
View file @
cc6fc442
...
...
@@ -2100,18 +2100,6 @@ process_command (argc, argv)
add_prefix
(
&
startfile_prefix
,
standard_exec_prefix
,
0
,
1
,
NULL_PTR
);
add_prefix
(
&
startfile_prefix
,
standard_exec_prefix_1
,
0
,
1
,
NULL_PTR
);
else
if
(
argv
[
i
][
0
]
==
'+'
&&
argv
[
i
][
1
]
==
'e'
)
{
/* Compensate for the +e options to the C++ front-end;
they're there simply for cfront call-compatability. We do
some magic in default_compilers to pass them down properly.
Note we deliberately start at the `+' here, to avoid passing
-e0 or -e1 down into the linker. */
switches
[
n_switches
].
part1
=
&
argv
[
i
][
0
];
switches
[
n_switches
].
args
=
0
;
switches
[
n_switches
].
valid
=
0
;
n_switches
++
;
}
/* More prefixes are enabled in main, after we read the specs file
and determine whether this is cross-compilation or not. */
...
...
@@ -2141,6 +2129,18 @@ process_command (argc, argv)
;
else
if
(
!
strcmp
(
argv
[
i
],
"-print-libgcc-file-name"
))
;
else
if
(
argv
[
i
][
0
]
==
'+'
&&
argv
[
i
][
1
]
==
'e'
)
{
/* Compensate for the +e options to the C++ front-end;
they're there simply for cfront call-compatability. We do
some magic in default_compilers to pass them down properly.
Note we deliberately start at the `+' here, to avoid passing
-e0 or -e1 down into the linker. */
switches
[
n_switches
].
part1
=
&
argv
[
i
][
0
];
switches
[
n_switches
].
args
=
0
;
switches
[
n_switches
].
valid
=
0
;
n_switches
++
;
}
else
if
(
argv
[
i
][
0
]
==
'-'
&&
argv
[
i
][
1
]
!=
0
&&
argv
[
i
][
1
]
!=
'l'
)
{
register
char
*
p
=
&
argv
[
i
][
1
];
...
...
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