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
ede57549
Commit
ede57549
authored
31 years ago
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(gnucompare, gnucompare3): New targets.
From-SVN: r6236
parent
9473a84f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
gcc/Makefile.in
+15
-0
No files found.
gcc/Makefile.in
View file @
ede57549
...
...
@@ -2136,6 +2136,21 @@ compare3: force
done
-
rm
-f
tmp-foo
*
# Compare the object files in the current directory with those in the
# stage2 directory. Use gnu cmp (diffutils v2.4 or later) to avoid
# running tail and the overhead of twice copying each object file.
gnucompare
:
force
for
file
in
*
.o
;
do
\
cmp
--ignore-initial
=
16
$$
file stage2/
$$
file
||
true
;
\
done
# Similar, but compare with stage3 directory
gnucompare3
:
force
for
file
in
*
.o
;
do
\
cmp
--ignore-initial
=
16
$$
file stage3/
$$
file
||
true
;
\
done
# Copy the object files from a particular stage into a subdirectory.
stage1
:
force
-
if
[
-d
stage1
]
;
then
true
;
else
mkdir stage1
;
fi
...
...
This diff is collapsed.
Click to expand it.
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