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
3aa072f2
Commit
3aa072f2
authored
May 27, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1108
parent
2b9a9aea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
6 deletions
+16
-6
gcc/Makefile.in
+16
-6
No files found.
gcc/Makefile.in
View file @
3aa072f2
...
...
@@ -416,9 +416,9 @@ Makefile: $(srcdir)/Makefile.in $(srcdir)/configure $(srcdir)/version.c \
all.internal
:
start.encap rest.encap
# This is what to compile if making a cross-compiler.
all.cross
:
native gcc-cross cross-test
all.cross
:
native gcc-cross cross-test
$(EXTRA_PARTS)
# This is what must be made before installing GCC and converting libraries.
start.encap
:
native gcc $(LIBGCC1_TARGET)
start.encap
:
native gcc
specs
$(LIBGCC1_TARGET)
# Use this to make a GCC that will be used only to recompile GCC.
for-bootstrap
:
start.encap libgcc.a
# These can't be made, with COFF encapsulation, until after GCC can run.
...
...
@@ -445,6 +445,10 @@ config.status:
true
;
\
fi
# On the target machine, finish building a cross compiler.
# This does the things that can't be done on the host machine.
rest.cross
:
libgcc.a float.h specs
# Verify that it works to compile and link cross-test.
# If it does, then there are sufficient replacements for libgcc1.a.
cross-test
:
cross-test.o native gcc-cross
...
...
@@ -452,13 +456,17 @@ cross-test: cross-test.o native gcc-cross
cross-test.o
:
cross-test.c native gcc-cross
$(GCC_FOR_TARGET)
$(GCC_CFLAGS)
$(ALL_CPPFLAGS)
-c
$(srcdir)
/cross-test.c
# Recompile all the language-independent object files.
# This is used only if the user explicitly asks for it.
compilations
:
${OBJS}
gcc
:
gcc.o version.o $(LIBDEPS)
$(CC)
$(ALL_CFLAGS)
$(LDFLAGS)
-o
gccnew gcc.o version.o
$(LIBS)
# Go via `gccnew' to avoid `file busy' if $(CC) is `gcc'.
mv
-f
gccnew
gcc
# Dump a specs file to make -B./ read these specs over installed ones
# Dump a specs file to make -B./ read these specs over installed ones.
specs
:
gcc
./gcc
-dumpspecs
>
specs
# We do want to create an executable named `gcc', so we can use it to
...
...
@@ -1135,12 +1143,14 @@ protoize.1: $(srcdir)/proto-man ./cpp
./cpp
-traditional
$(srcdir)
/proto-man
\
|
grep
-v
'^#'
\
| awk
'NF > 0 {print}'
>
tmp-proto.1
-
rm
-f
protoize.1
mv tmp-proto.1 protoize.1
unprotoize.1
:
$(srcdir)/proto-man ./cpp
./cpp
-traditional
-DUNPRO
$(srcdir)
/proto-man
\
|
grep
-v
'^#'
\
| awk
'NF > 0 {print}'
>
tmp-unproto.1
-
rm
-f
unprotoize.1
mv tmp-unproto.1 unprotoize.1
# This info describes the target machine, so compile with GCC just built.
...
...
@@ -1213,7 +1223,7 @@ mostlyclean:
for
name
in
$(LIB1FUNCS);
do
rm
-f
$${name}.c;
done
# Delete other temporary files.
-rm
-f
tmp-float.h
tmp-gcc.xtar.Z
tmp-limits.h
gccnew
-rm
-f
tmp-foo1
tmp-foo2
tmp-proto.*
-rm
-f
tmp-foo1
tmp-foo2
tmp-proto.*
tmp-unproto.1
# Delete the stamp files.
-rm
-f
stamp-*
tmp-*
# Delete debugging dump files.
...
...
@@ -1236,8 +1246,8 @@ clean: mostlyclean
# but the spec for `make clean' requires it.
# Using unprotoize.c is not quite right in the first place,
# but what better way is there?
-rm
-f
libgcc.a
libgcc1.a
libgcc2.a
libgcc2.ready
unprotoize.c
-rm
-f
*.dvi
-rm
-f
libgcc.a
libgcc1.a
libgcc2.a
libgcc2.ready
libgcc1.null
-rm
-f
*.dvi
unprotoize.c
# 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