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
2588b26e
Commit
2588b26e
authored
12 years ago
by
Robert Mason
Committed by
Bruce Korb
12 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
final patch for enabling VxWorks
From-SVN: r193124
parent
358a3dbc
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
47 additions
and
14 deletions
+47
-14
ChangeLog
+5
-0
configure.ac
+25
-13
gcc/ChangeLog
+4
-0
gcc/gcov-io.c
+2
-1
libstdc++-v3/ChangeLog
+5
-0
libstdc++-v3/config/os/vxworks/os_defines.h
+6
-0
No files found.
ChangeLog
View file @
2588b26e
2012-11-03 Robert Mason <rbmj@verizon.net>
* configure.ac: add --disable-libstdcxx configure option
and handle defaulted state only for VxWorks, ARM-wince-pe and AVR.
2012-10-30 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>
* MAINTAINERS (Write After Approval): Add myself.
...
...
This diff is collapsed.
Click to expand it.
configure.ac
View file @
2588b26e
...
...
@@ -427,6 +427,15 @@ AC_ARG_ENABLE(libssp,
ENABLE_LIBSSP=$enableval,
ENABLE_LIBSSP=yes)
AC_ARG_ENABLE(libstdcxx,
AS_HELP_STRING([--disable-libstdcxx],
[do not build libstdc++-v3 directory]),
ENABLE_LIBSTDCXX=$enableval,
ENABLE_LIBSTDCXX=default)
[if test "${ENABLE_LIBSTDCXX}" = "no" ; then
noconfigdirs="$noconfigdirs libstdc++-v3"
fi]
# Save it here so that, even in case of --enable-libgcj, if the Java
# front-end isn't enabled, we still get libgcj disabled.
libgcj_saved=$libgcj
...
...
@@ -562,19 +571,22 @@ case "${target}" in
esac
# Disable libstdc++-v3 for some systems.
case "${target}" in
*-*-vxworks*)
# VxWorks uses the Dinkumware C++ library.
noconfigdirs="$noconfigdirs target-libstdc++-v3"
;;
arm*-wince-pe*)
# the C++ libraries don't build on top of CE's C libraries
noconfigdirs="$noconfigdirs target-libstdc++-v3"
;;
avr-*-*)
noconfigdirs="$noconfigdirs target-libstdc++-v3"
;;
esac
# Allow user to override this if they pass --enable-libstdc++-v3
if test "${ENABLE_LIBSTDCXX}" = "default" ; then
case "${target}" in
*-*-vxworks*)
# VxWorks uses the Dinkumware C++ library.
noconfigdirs="$noconfigdirs target-libstdc++-v3"
;;
arm*-wince-pe*)
# the C++ libraries don't build on top of CE's C libraries
noconfigdirs="$noconfigdirs target-libstdc++-v3"
;;
avr-*-*)
noconfigdirs="$noconfigdirs target-libstdc++-v3"
;;
esac
fi
# Disable Fortran for some systems.
case "${target}" in
...
...
This diff is collapsed.
Click to expand it.
gcc/ChangeLog
View file @
2588b26e
2012
-
11
-
03
Robert
Mason
<
rbmj
@verizon
.
net
>
*
gcov
-
io
.
c
(
gcov_open
)
:
Add
file
mode
to
open
call
(
need
for
VxWorks
)
2012
-
11
-
03
Sandra
Loosemore
<
sandra
@codesourcery
.
com
>
*
doc
/
extend
.
texi
:
Copy
-
edit
to
use
present
tense
except
when
This diff is collapsed.
Click to expand it.
gcc/gcov-io.c
View file @
2588b26e
...
...
@@ -92,7 +92,8 @@ gcov_open (const char *name, int mode)
{
/* Read-only mode - acquire a read-lock. */
s_flock
.
l_type
=
F_RDLCK
;
fd
=
open
(
name
,
O_RDONLY
);
/* pass mode (ignored) for compatibility */
fd
=
open
(
name
,
O_RDONLY
,
S_IRUSR
|
S_IWUSR
);
}
else
{
...
...
This diff is collapsed.
Click to expand it.
libstdc++-v3/ChangeLog
View file @
2588b26e
2012-11-03 Robert Mason <rbmj@verizon.net>
* config/os/vxworks/os_defines.h:
Keep vxWorks from defining min()/max() as macros
2012-11-03 Jonathan Wakely <jwakely.gcc@gmail.com>
* doc/html/*: Regenerate.
...
...
This diff is collapsed.
Click to expand it.
libstdc++-v3/config/os/vxworks/os_defines.h
View file @
2588b26e
...
...
@@ -33,4 +33,10 @@
// System-specific #define, typedefs, corrections, etc, go here. This
// file will come before all others.
//Keep vxWorks from defining min()/max() as macros
#ifdef NOMINMAX
#undef NOMINMAX
#endif
#define NOMINMAX 1
#endif
This diff is collapsed.
Click to expand it.
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