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
6b151aa7
Commit
6b151aa7
authored
May 04, 2000
by
Bruce Korb
Committed by
Bruce Korb
May 04, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove BOGOSITY code, and Remove code for installing "shell" version
From-SVN: r33669
parent
872f37f9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
106 deletions
+4
-106
gcc/ChangeLog
+2
-0
gcc/fixinc/fixincl.c
+1
-102
gcc/fixinc/mkfixinc.sh
+1
-4
No files found.
gcc/ChangeLog
View file @
6b151aa7
...
...
@@ -4,6 +4,8 @@
Remove
`
extern
double
cabs
'
declarations
from
math
.
h
*
fixincl
/
inclhack
.
sh
:
regen
*
fixincl
/
fixincl
.
x
:
regen
*
fixincl
/
fixincl
.
c
:
Remove
BOGOSITY
code
*
fixincl
/
mkfixinc
.
sh
:
Remove
code
for
installing
"shell"
version
Thu
May
4
09
:
45
:
12
2000
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
...
...
gcc/fixinc/fixincl.c
View file @
6b151aa7
...
...
@@ -33,13 +33,6 @@ Boston, MA 02111-1307, USA. */
#include "server.h"
#define NO_BOGOSITY
/* Quality Assurance Marker :-)
Any file that contains this string is presumed to have
been carefully constructed and will not be fixed */
/* The contents of this string are not very important. It is mostly
just used as part of the "I am alive and working" test. */
...
...
@@ -244,33 +237,7 @@ main (argc, argv)
continue
;
*
pz_end
=
NUL
;
#ifdef NO_BOGOSITY
process
();
#else
/* Prevent duplicate output by child process */
fflush
(
stdout
);
fflush
(
stderr
);
{
void
wait_for_pid
_P_
((
pid_t
));
pid_t
child
=
fork
();
if
(
child
==
NULLPROCESS
)
{
process
();
return
EXIT_SUCCESS
;
}
if
(
child
==
NOPROCESS
)
{
fprintf
(
stderr
,
"Error %d (%s) forking in main
\n
"
,
errno
,
xstrerror
(
errno
));
exit
(
EXIT_FAILURE
);
}
wait_for_pid
(
child
);
}
#endif
}
/* for (;;) */
#ifdef DO_STATS
...
...
@@ -302,7 +269,7 @@ do_version ()
*/
run_compiles
();
sprintf
(
zBuf
,
zFmt
,
program_id
);
fputs
(
zBuf
+
5
,
stdout
);
puts
(
zBuf
+
5
);
exit
(
strcmp
(
run_shell
(
zBuf
),
program_id
));
}
...
...
@@ -405,75 +372,7 @@ initialize ()
signal
(
SIGPIPE
,
SIG_IGN
);
signal
(
SIGALRM
,
SIG_IGN
);
signal
(
SIGTERM
,
SIG_IGN
);
#ifndef NO_BOGOSITY
/*
Make sure that if we opened a server process, we close it now.
This is the grandparent process. We don't need the server anymore
and our children should make their own. */
close_server
();
(
void
)
wait
(
(
int
*
)
NULL
);
#endif
}
#ifndef NO_BOGOSITY
/* * * * * * * * * * * * *
wait_for_pid - Keep calling `wait(2)' until it returns
the process id we are looking for. Not every system has
`waitpid(2)'. We also ensure that the children exit with success. */
void
wait_for_pid
(
child
)
pid_t
child
;
{
for
(;;)
{
int
status
;
pid_t
dead_kid
=
wait
(
&
status
);
if
(
dead_kid
==
child
)
{
if
(
!
WIFEXITED
(
status
))
{
if
(
WSTOPSIG
(
status
)
==
0
)
break
;
fprintf
(
stderr
,
"child process %d is hung on signal %d
\n
"
,
child
,
WSTOPSIG
(
status
));
exit
(
EXIT_FAILURE
);
}
if
(
WEXITSTATUS
(
status
)
!=
0
)
{
fprintf
(
stderr
,
"child process %d exited with status %d
\n
"
,
child
,
WEXITSTATUS
(
status
));
exit
(
EXIT_FAILURE
);
}
break
;
/* normal child completion */
}
/*
IF there is an error, THEN see if it is retryable.
If it is not retryable, then break out of this loop. */
if
(
dead_kid
==
NOPROCESS
)
{
switch
(
errno
)
{
case
EINTR
:
case
EAGAIN
:
break
;
default
:
if
(
NOT_SILENT
)
fprintf
(
stderr
,
"Error %d (%s) waiting for %d to finish
\n
"
,
errno
,
xstrerror
(
errno
),
child
);
/* FALLTHROUGH */
case
ECHILD
:
/* no children to wait for?? */
return
;
}
}
}
done_waiting
:
;
}
#endif
/* NO_BOGOSITY */
/* * * * * * * * * * * * *
...
...
gcc/fixinc/mkfixinc.sh
View file @
6b151aa7
...
...
@@ -121,7 +121,4 @@ echo $MAKE SHELL=\"$SHELL\" install-bin
# make and install either the binary or the default script
#
$MAKE
SHELL
=
"
$SHELL
"
install-bin
&&
exit
0
echo
$MAKE
SHELL
=
\"
$SHELL
\"
install-sh
$MAKE
SHELL
=
"
$SHELL
"
install-sh
$MAKE
SHELL
=
"
$SHELL
"
install-bin
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