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
9ea0a753
Commit
9ea0a753
authored
May 06, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(sys/varargs.h): Replace.
From-SVN: r4366
parent
074daeb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
gcc/fixinc.svr4
+22
-0
No files found.
gcc/fixinc.svr4
View file @
9ea0a753
...
@@ -1246,6 +1246,28 @@ if [ \! -z "$file_to_fix" ]; then
...
@@ -1246,6 +1246,28 @@ if [ \! -z "$file_to_fix" ]; then
rm
-f
/tmp/
$base
rm
-f
/tmp/
$base
fi
fi
# Completely replace <sys/varargs.h> with a file that includes gcc's
# stdarg.h or varargs.h files as appropriate.
file
=
sys/varargs.h
if
[
-r
${
INPUT
}
/
$file
]
;
then
echo
Replacing
$file
cat
>
${
LIB
}
/
$file
<<
EOF
/* This file was generated by fixincludes. */
#ifndef _SYS_VARARGS_H
#define _SYS_VARARGS_H
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#endif /* _SYS_VARARGS_H */
EOF
chmod a+r
${
LIB
}
/
$file
fi
echo
'Removing unneeded directories:'
echo
'Removing unneeded directories:'
cd
$LIB
cd
$LIB
files
=
`
find
.
-type
d
-print
| sort
-r
`
files
=
`
find
.
-type
d
-print
| sort
-r
`
...
...
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