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
fefc83ce
Commit
fefc83ce
authored
Sep 16, 1993
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't refix include files when xgcc is rebuilt
From-SVN: r5341
parent
a0bc0933
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
gcc/Makefile.in
+13
-2
No files found.
gcc/Makefile.in
View file @
fefc83ce
...
...
@@ -1390,8 +1390,19 @@ stmp-headers: stmp-int-hdrs gfloat.h
chmod a+r include/float.h
touch stmp-headers
# Running fixincludes requires making sure that xgcc and cpp have been
# compiled (they are used to get the value of __SIZE_TYPE__).
# But recompiling xgcc should not force the the header files to be
# fixed again. If you want to do that, delete stmp-fixinc.
fixinc.ready
:
xgcc cpp
-
if
[
-f
fixinc.ready
]
;
then
\
true
;
\
else
\
touch fixinc.ready
;
\
fi
# Build fixed copies of system files.
stmp-fixinc
:
$(srcdir)/$(FIXINCLUDES) gsyslimits.h
xgcc cpp
stmp-fixinc
:
$(srcdir)/$(FIXINCLUDES) gsyslimits.h
fixinc.ready
rm
-rf
include
mkdir include
if
[
x
$(FIXINCLUDES)
!=
xMakefile.in
]
;
\
...
...
@@ -1542,7 +1553,7 @@ clean: mostlyclean
-rm
-f
libgcc.a
libgcc1.a
libgcc2.a
libgcc2.ready
libgcc1.null
-rm
-f
*.dvi
# Delete the include directory.
-rm
-rf
stmp-*
include
objc-headers
-rm
-rf
stmp-*
fixinc.ready
include
objc-headers
# Delete all files that users would normally create
# while building and installing GCC.
...
...
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