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
f717c7e4
Commit
f717c7e4
authored
Aug 11, 1998
by
Gerald Pfeifer
Committed by
Gerald Pfeifer
Aug 11, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* egcs_update: New script.
From-SVN: r21664
parent
89e65674
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
0 deletions
+51
-0
contrib/ChangeLog
+4
-0
contrib/egcs_update
+47
-0
No files found.
contrib/ChangeLog
View file @
f717c7e4
Tue Aug 11 17:33:19 1998 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* egcs_update: New script.
1998-08-05 Bruce Korb <korbb@datadesign.com>
* fixinc/Makefile
...
...
contrib/egcs_update
0 → 100755
View file @
f717c7e4
#! /bin/sh
#
# Update a local CVS tree from the egcs repository, with an emphasis
# on treating generated files correctly, so that autoconf, bison et
# al are not required for the ``end'' user.
#
# By Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>, 10.8.1998.
UPDATE_OPTIONS
=
-P
# Add -d to create any directories that exist in the repository but not
# locally.
# Add -A to reset any sticky tags, dates, or `-k' options.
echo
"Current directory is
`
pwd
`
."
# First of all, check whether this indeed looks like a local CVS of egcs.
if
[
!
-d
CVS
]
||
[
!
-f
gcc/version.c
]
;
then
echo
"This does not seem to be an egcs CVS tree!"
exit
fi
echo
"Pass 1: Updating autoconf and bison generated files"
find
.
-name
configure.in
-o
-name
'*.y'
| xargs cvs
-q
update
echo
"Pass 2: Updating full tree"
cvs
-q
update
$UPDATE_OPTIONS
echo
"Pass 3: Fixing local tree"
touch
`
find
.
-name
configure
-print
`
touch
`
find texinfo
-name
Makefile.in
-print
`
touch
`
find texinfo
-name
\*
.pot
-print
`
touch
`
find texinfo
-name
\*
.gmo
-print
`
for
f
in
gcc/c-parse.y
\
gcc/cstamp-h.in
\
gcc/c-gperf.h
\
gcc/c-parse.c
\
gcc/c-parse.h
\
gcc/cexp.c
\
gcc/cp/parse.c
\
gcc/cp/parse.h
\
gcc/objc/objc-parse.c
\
gcc/objc/objc-parse.y
\
libf2c/libU77/stamp-h.in
do
touch
$f
done
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