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
b4d63183
Commit
b4d63183
authored
Jun 14, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(stage[1-4]): Correctly link `as', `ld', and `collect2'.
From-SVN: r9948
parent
db2f8a07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
gcc/Makefile.in
+12
-12
No files found.
gcc/Makefile.in
View file @
b4d63183
...
@@ -2418,9 +2418,9 @@ stage1-start:
...
@@ -2418,9 +2418,9 @@ stage1-start:
-
mv
$(STAGESTUFF)
stage1
-
mv
$(STAGESTUFF)
stage1
# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
# dir will work properly.
# dir will work properly.
-if
[
-f
as$(exeext)
]
;
then
ln
-s
as$(exeext)
stage1
||
cp
as$(exeext)
stage1
;
else
true
;
fi
-if
[
-f
as$(exeext)
]
;
then
ln
-s
../
as$(exeext)
stage1
||
cp
as$(exeext)
stage1
;
else
true
;
fi
-if
[
-f
ld$(exeext)
]
;
then
ln
-s
ld$(exeext)
stage1
||
cp
ld$(exeext)
stage1
;
else
true
;
fi
-if
[
-f
ld$(exeext)
]
;
then
ln
-s
../
ld$(exeext)
stage1
||
cp
ld$(exeext)
stage1
;
else
true
;
fi
-if
[
-f
collect-ld$(exeext)
]
;
then
ln
-s
collect-ld$(exeext)
stage1
||
cp
collect-ld$(exeext)
stage1
;
else
true
;
fi
-if
[
-f
collect-ld$(exeext)
]
;
then
ln
-s
../
collect-ld$(exeext)
stage1
||
cp
collect-ld$(exeext)
stage1
;
else
true
;
fi
-rm
-f
stage1/libgcc.a
-rm
-f
stage1/libgcc.a
-cp
libgcc.a
stage1
-cp
libgcc.a
stage1
-if
$(RANLIB_TEST)
;
then
$(RANLIB)
stage1/libgcc.a;
else
true;
fi
-if
$(RANLIB_TEST)
;
then
$(RANLIB)
stage1/libgcc.a;
else
true;
fi
...
@@ -2435,9 +2435,9 @@ stage2-start:
...
@@ -2435,9 +2435,9 @@ stage2-start:
-
mv
$(STAGESTUFF)
stage2
-
mv
$(STAGESTUFF)
stage2
# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
# dir will work properly.
# dir will work properly.
-if
[
-f
as$(exeext)
]
;
then
ln
-s
as$(exeext)
stage2
||
cp
as$(exeext)
stage2
;
else
true
;
fi
-if
[
-f
as$(exeext)
]
;
then
ln
-s
../
as$(exeext)
stage2
||
cp
as$(exeext)
stage2
;
else
true
;
fi
-if
[
-f
ld$(exeext)
]
;
then
ln
-s
ld$(exeext)
stage2
||
cp
ld$(exeext)
stage2
;
else
true
;
fi
-if
[
-f
ld$(exeext)
]
;
then
ln
-s
../
ld$(exeext)
stage2
||
cp
ld$(exeext)
stage2
;
else
true
;
fi
-if
[
-f
collect-ld
]
;
then
ln
-s
collect-ld$(exeext)
stage2
||
cp
collect-ld$(exeext)
stage2
;
else
true
;
fi
-if
[
-f
collect-ld
]
;
then
ln
-s
../
collect-ld$(exeext)
stage2
||
cp
collect-ld$(exeext)
stage2
;
else
true
;
fi
-rm
-f
stage2/libgcc.a
-rm
-f
stage2/libgcc.a
-cp
libgcc.a
stage2
-cp
libgcc.a
stage2
-if
$(RANLIB_TEST)
;
then
$(RANLIB)
stage2/libgcc.a;
else
true;
fi
-if
$(RANLIB_TEST)
;
then
$(RANLIB)
stage2/libgcc.a;
else
true;
fi
...
@@ -2452,9 +2452,9 @@ stage3-start:
...
@@ -2452,9 +2452,9 @@ stage3-start:
-
mv
$(STAGESTUFF)
stage3
-
mv
$(STAGESTUFF)
stage3
# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
# dir will work properly.
# dir will work properly.
-if
[
-f
as$(exeext)
]
;
then
ln
-s
as$(exeext)
stage3
||
cp
as$(exeext)
stage3
;
else
true
;
fi
-if
[
-f
as$(exeext)
]
;
then
ln
-s
../
as$(exeext)
stage3
||
cp
as$(exeext)
stage3
;
else
true
;
fi
-if
[
-f
ld$(exeext)
]
;
then
ln
-s
ld$(exeext)
stage3
||
cp
ld$(exeext)
stage3
;
else
true
;
fi
-if
[
-f
ld$(exeext)
]
;
then
ln
-s
../
ld$(exeext)
stage3
||
cp
ld$(exeext)
stage3
;
else
true
;
fi
-if
[
-f
collect-ld$(exeext)
]
;
then
ln
-s
collect-ld$(exeext)
stage3
||
cp
collect-ld$(exeext)
stage3
;
else
true
;
fi
-if
[
-f
collect-ld$(exeext)
]
;
then
ln
-s
../
collect-ld$(exeext)
stage3
||
cp
collect-ld$(exeext)
stage3
;
else
true
;
fi
-rm
-f
stage3/libgcc.a
-rm
-f
stage3/libgcc.a
-cp
libgcc.a
stage3
-cp
libgcc.a
stage3
-if
$(RANLIB_TEST)
;
then
$(RANLIB)
stage3/libgcc.a;
else
true;
fi
-if
$(RANLIB_TEST)
;
then
$(RANLIB)
stage3/libgcc.a;
else
true;
fi
...
@@ -2469,9 +2469,9 @@ stage4-start:
...
@@ -2469,9 +2469,9 @@ stage4-start:
-
mv
$(STAGESTUFF)
stage4
-
mv
$(STAGESTUFF)
stage4
# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
# dir will work properly.
# dir will work properly.
-if
[
-f
as$(exeext)
]
;
then
ln
-s
as$(exeext)
stage4
||
cp
as$(exeext)
stage4
;
else
true
;
fi
-if
[
-f
as$(exeext)
]
;
then
ln
-s
../
as$(exeext)
stage4
||
cp
as$(exeext)
stage4
;
else
true
;
fi
-if
[
-f
ld$(exeext)
]
;
then
ln
-s
ld$(exeext)
stage4
||
cp
ld$(exeext)
stage4
;
else
true
;
fi
-if
[
-f
ld$(exeext)
]
;
then
ln
-s
../
ld$(exeext)
stage4
||
cp
ld$(exeext)
stage4
;
else
true
;
fi
-if
[
-f
collect-ld$(exeext)
]
;
then
ln
-s
collect-ld$(exeext)
stage4
||
cp
collect-ld$(exeext)
stage4
;
else
true
;
fi
-if
[
-f
collect-ld$(exeext)
]
;
then
ln
-s
../
collect-ld$(exeext)
stage4
||
cp
collect-ld$(exeext)
stage4
;
else
true
;
fi
-rm
-f
stage4/libgcc.a
-rm
-f
stage4/libgcc.a
-cp
libgcc.a
stage4
-cp
libgcc.a
stage4
-if
$(RANLIB_TEST)
;
then
$(RANLIB)
stage4/libgcc.a;
else
true;
fi
-if
$(RANLIB_TEST)
;
then
$(RANLIB)
stage4/libgcc.a;
else
true;
fi
...
...
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