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
5918c853
Commit
5918c853
authored
Oct 19, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(libgcc{1,2}.a): Allow LIB{1,2}FUNCS_EXTRA files to end in .S as well
as .c and .asm. From-SVN: r10474
parent
7e9d002a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gcc/Makefile.in
+2
-2
No files found.
gcc/Makefile.in
View file @
5918c853
...
...
@@ -789,7 +789,7 @@ libgcc1.a: libgcc1.c $(CONFIG_H) $(LIB1FUNCS_EXTRA) config.status
for
file
in
..
$(LIB1FUNCS_EXTRA);
\
do
\
if
[
x$${file}
!=
x..
]
;
then
\
name
=
`
echo
$$
{
file
}
| sed
-e
's/[.]
c
$$//'
-e
's/[.]asm$$//'
`
;
\
name
=
`
echo
$$
{
file
}
| sed
-e
's/[.]
[cS]
$$//'
-e
's/[.]asm$$//'
`
;
\
echo
$$
{
name
}
;
\
if
[
$$
{
name
}
.asm
=
$$
{
file
}
]
;
then
\
cp
$$
{
file
}
$$
{
name
}
.s
||
exit
1
;
file
=
$$
{
name
}
.s
;
\
...
...
@@ -887,7 +887,7 @@ libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(LIB2FUNCS_EXTRA) \
for
file
in
..
$(LIB2FUNCS_EXTRA);
\
do
\
if
[
x$${file}
!=
x..
]
;
then
\
name
=
`
echo
$$
{
file
}
| sed
-e
's/[.]
c
$$//'
-e
's/[.]asm$$//'
`
;
\
name
=
`
echo
$$
{
file
}
| sed
-e
's/[.]
[cS]
$$//'
-e
's/[.]asm$$//'
`
;
\
oname
=
`
echo
$$
{
name
}
| sed
-e
's,.*/,,'
`
;
\
echo
$$
{
name
}
;
\
if
[
$$
{
name
}
.asm
=
$$
{
file
}
]
;
then
\
...
...
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