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
15fe1a7e
Commit
15fe1a7e
authored
Jan 05, 2001
by
Bruce Korb
Committed by
Bruce Korb
Jan 05, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix exit and atexit calls for vax-*-bsd systems
From-SVN: r38713
parent
b0888988
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletions
+13
-1
gcc/ChangeLog
+7
-0
gcc/fixinc/fixincl.c
+1
-1
gcc/fixinc/mkfixinc.sh
+5
-0
No files found.
gcc/ChangeLog
View file @
15fe1a7e
2001-01-05 Bruce Korb <bkorb@gnu.org>
* fixinc/mkfixinc.sh(vax-*-bsd): convert exit and atexit calls to
their x* equivalent versions for atexit-less systems
* fixinc/fixincl.c(main): do not return from main() on atexit-less
systems (or any other system any more).
2001-01-05 Richard Earnshaw <rearnsha@arm.com>
* arm.md (ldmsi_postinc): Avoid use of match_dup between input and
...
...
gcc/fixinc/fixincl.c
View file @
15fe1a7e
...
...
@@ -184,7 +184,7 @@ Altering %5d of them\n";
# ifdef SEPARATE_FIX_PROC
unlink
(
pz_temp_file
);
# endif
return
EXIT_SUCCESS
;
exit
(
EXIT_SUCCESS
)
;
}
...
...
gcc/fixinc/mkfixinc.sh
View file @
15fe1a7e
...
...
@@ -23,6 +23,11 @@ case $build in
CFLAGS
=
"
${
CFLAGS
}
-DSEPARATE_FIX_PROC"
;;
vax-dec-bsd
*
)
CFLAGS
=
"
${
CFLAGS
}
-Dexit=xexit -Datexit=xatexit"
MAKE
=
"
${
MAKE
}
TARGETS=oneprocess"
;;
*
)
MAKE
=
"
${
MAKE
}
TARGETS=oneprocess"
;;
...
...
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