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
935e11b0
Commit
935e11b0
authored
Apr 17, 1992
by
Tom Wood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r760
parent
4d23e509
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
gcc/Makefile.in
+15
-15
No files found.
gcc/Makefile.in
View file @
935e11b0
...
...
@@ -1273,16 +1273,16 @@ install-float-h-cross:
# Create the installation directory.
install-dir
:
if
[
-d
$(libdir)
]
;
then
true
;
else
mkdir
$(libdir)
;
fi
if
[
-d
$(libdir)
/gcc-lib
]
;
then
true
;
else
mkdir
$(libdir)
/gcc-lib
;
fi
if
[
-d
$(libdir)
/gcc-lib/include
]
;
then
true
;
else
mkdir
$(libdir)
/gcc-lib/include
;
fi
if
[
-d
$(libdir)
/gcc-lib/
$(target)
]
;
then
true
;
else
mkdir
$(libdir)
/gcc-lib/
$(target)
;
fi
if
[
-d
$(libdir)
/gcc-lib/
$(target)
/
$(version)
]
;
then
true
;
else
mkdir
$(libdir)
/gcc-lib/
$(target)
/
$(version)
;
fi
if
[
-d
$(bindir)
]
;
then
true
;
else
mkdir
$(bindir)
;
fi
-
if
[
-d
$(libdir)
]
;
then
true
;
else
mkdir
$(libdir)
;
fi
-
if
[
-d
$(libdir)
/gcc-lib
]
;
then
true
;
else
mkdir
$(libdir)
/gcc-lib
;
fi
-
if
[
-d
$(libdir)
/gcc-lib/include
]
;
then
true
;
else
mkdir
$(libdir)
/gcc-lib/include
;
fi
-
if
[
-d
$(libdir)
/gcc-lib/
$(target)
]
;
then
true
;
else
mkdir
$(libdir)
/gcc-lib/
$(target)
;
fi
-
if
[
-d
$(libdir)
/gcc-lib/
$(target)
/
$(version)
]
;
then
true
;
else
mkdir
$(libdir)
/gcc-lib/
$(target)
/
$(version)
;
fi
-
if
[
-d
$(bindir)
]
;
then
true
;
else
mkdir
$(bindir)
;
fi
# We don't use mkdir -p to create the parents of mandir,
# because some systems don't support it.
# Instead, we use this technique to create the immediate parent of mandir.
parent
=
`
echo
$(mandir)
|sed
-e
's@/[^/]*$$@@'
`
;
\
-
parent
=
`
echo
$(mandir)
|sed
-e
's@/[^/]*$$@@'
`
;
\
if
[
-d
$$
parent
]
;
then
true
;
else
mkdir
$$
parent
;
fi
-if
[
-d
$(mandir)
]
;
then
true
;
else
mkdir
$(mandir)
;
fi
...
...
@@ -1385,7 +1385,7 @@ install-limits-h: limits.h limitx.h
# Install the fixed headers that are the same for all machines.
install-common-headers
:
install-dir $(USER_H) gvarargs.h gstdarg.h gstddef.h
if
[
-d
$(libsubdir)
/include
]
;
then
true
;
else
mkdir
$(libsubdir)
/include
;
fi
-
if
[
-d
$(libsubdir)
/include
]
;
then
true
;
else
mkdir
$(libsubdir)
/include
;
fi
-
chmod ugo+rx
$(libsubdir)
/include
# Must compute $(libsubdir) before the cd; the awk script won't work after.
shelllibsubdir
=
$(libsubdir)
;
\
...
...
@@ -1410,7 +1410,7 @@ install-common-headers: install-dir $(USER_H) gvarargs.h gstdarg.h gstddef.h
-cp
$(srcdir)/byteorder.h
.
# $(libsubdir)/include:
# if [ -d $(libsubdir)/include ] ; then true ; else mkdir $(libsubdir)/include ; fi
#
-
if [ -d $(libsubdir)/include ] ; then true ; else mkdir $(libsubdir)/include ; fi
# -chmod ugo+rx $(libsubdir)/include
# This appears not to work. It isn't clear how to fix it.
...
...
@@ -1587,14 +1587,14 @@ stage2: force
-
if
$(RANLIB_TEST)
;
then
$(RANLIB)
stage2/libgcc.a
;
else
true
;
fi
stage3
:
force
if
[
-d
stage3
]
;
then
true
;
else
mkdir stage3
;
fi
-
if
[
-d
stage3
]
;
then
true
;
else
mkdir stage3
;
fi
-
mv
$(STAGESTUFF)
stage3
-
rm
-f
stage3/libgcc.a
-
cp libgcc.a stage3
-
if
$(RANLIB_TEST)
;
then
$(RANLIB)
stage3/libgcc.a
;
else
true
;
fi
stage4
:
force
if
[
-d
stage4
]
;
then
true
;
else
mkdir stage4
;
fi
-
if
[
-d
stage4
]
;
then
true
;
else
mkdir stage4
;
fi
-
mv
$(STAGESTUFF)
stage4
-
rm
-f
stage4/libgcc.a
-
cp libgcc.a stage4
...
...
@@ -1604,28 +1604,28 @@ stage4: force
# and delete the object files. Use this if you're just verifying a version
# that is pretty sure to work, and you are short of disk space.
risky-stage1
:
force
if
[
-d
stage1
]
;
then
true
;
else
mkdir stage1
;
fi
-
if
[
-d
stage1
]
;
then
true
;
else
mkdir stage1
;
fi
-
mv cc1 cpp cccp gcc stage1
-
rm
-f
stage1/libgcc.a
-
cp libgcc.a stage1
&&
$(RANLIB)
stage1/libgcc.a
-
make clean
risky-stage2
:
force
if
[
-d
stage2
]
;
then
true
;
else
mkdir stage2
;
fi
-
if
[
-d
stage2
]
;
then
true
;
else
mkdir stage2
;
fi
-
mv cc1 cpp cccp gcc stage2
-
rm
-f
stage2/libgcc.a
-
cp libgcc.a stage2
&&
$(RANLIB)
stage2/libgcc.a
-
make clean
risky-stage3
:
force
if
[
-d
stage3
]
;
then
true
;
else
mkdir stage3
;
fi
-
if
[
-d
stage3
]
;
then
true
;
else
mkdir stage3
;
fi
-
mv cc1 cpp cccp gcc stage3
-
rm
-f
stage3/libgcc.a
-
cp libgcc.a stage3
&&
$(RANLIB)
stage3/libgcc.a
-
make clean
risky-stage4
:
force
if
[
-d
stage4
]
;
then
true
;
else
mkdir stage4
;
fi
-
if
[
-d
stage4
]
;
then
true
;
else
mkdir stage4
;
fi
-
mv cc1 cpp cccp gcc stage4
-
rm
-f
stage4/libgcc.a
-
cp libgcc.a stage4
&&
$(RANLIB)
stage4/libgcc.a
...
...
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