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
f0ec1f64
Commit
f0ec1f64
authored
Jul 02, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1392
parent
52d3ac76
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
gcc/Makefile.in
+10
-5
No files found.
gcc/Makefile.in
View file @
f0ec1f64
...
...
@@ -350,7 +350,7 @@ OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
rtl.o print-rtl.o rtlanal.o emit-rtl.o
\
dbxout.o sdbout.o dwarfout.o xcoffout.o
\
integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o
\
regclass.o local-alloc.o global
-alloc
.o reload.o reload1.o caller-save.o
\
regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o
\
insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o
\
insn-recog.o insn-extract.o insn-output.o insn-emit.o
\
insn-attrtab.o aux-output.o getpwd.o
$(EXTRA_OBJS)
...
...
@@ -823,7 +823,7 @@ regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
basic-block.h regs.h insn-config.h recog.h reload.h real.h
local-alloc.o
:
local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h
\
regs.h hard-reg-set.h insn-config.h recog.h output.h
global
-alloc.o
:
global-alloc
.c $(CONFIG_H) $(RTL_H) flags.h
\
global
.o
:
global
.c $(CONFIG_H) $(RTL_H) flags.h
\
basic-block.h regs.h hard-reg-set.h insn-config.h output.h
reload.o
:
reload.c $(CONFIG_H) $(RTL_H) flags.h
\
...
...
@@ -1351,7 +1351,7 @@ install-dir:
-if
[
-d
$(mandir)
]
;
then
true
;
else
mkdir
$(mandir)
;
fi
# Install the compiler executables built during cross compilation.
install-common
:
native install-dir
install-common
:
native install-dir
xgcc $(srcdir)/g++ $(srcdir)/c++ $(EXTRA_PARTS)
for
file
in
$(COMPILERS)
;
do
\
if
[
-f
$$
file
]
;
then
\
rm
-f
$(libsubdir)
/
$$
file
;
\
...
...
@@ -1365,8 +1365,13 @@ install-common: native install-dir
$(INSTALL_PROGRAM)
$$
file
$(libsubdir)
/
$$
file
;
\
else
true
;
fi
;
\
done
-
rm
-f
$(libsubdir)
/specs
$(INSTALL_DATA)
specs
$(libsubdir)
/specs
# Don't mess with specs if it doesn't exist yet.
# We can't make it a dependency because with a cross compiler
# you have to make specs on the target machine or not at all.
if
[
-f
specs
]
;
then
\
-rm
-f
$(libsubdir)/specs;
\
$(INSTALL_DATA)
specs
$(libsubdir)/specs;
\
fi
# Install the driver program as gcc-$(target)
# and also as either gcc (if native) or $(tooldir)/bin/gcc.
-if
[
-f
gcc-cross
]
;
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