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
1873ec0c
Commit
1873ec0c
authored
Nov 03, 2012
by
H.J. Lu
Committed by
H.J. Lu
Nov 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Regenerate top-level configure
* configure: Regenerated. From-SVN: r193128
parent
f17e96d0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
13 deletions
+33
-13
ChangeLog
+4
-0
configure
+29
-13
No files found.
ChangeLog
View file @
1873ec0c
2012-11-03 H.J. Lu <hongjiu.lu@intel.com>
* configure: Regenerated.
2012-11-03 Robert Mason <rbmj@verizon.net>
* configure.ac: add --disable-libstdcxx configure option
...
...
configure
View file @
1873ec0c
...
...
@@ -749,6 +749,7 @@ enable_libquadmath
enable_libquadmath_support
enable_libada
enable_libssp
enable_libstdcxx
enable_static_libjava
enable_bootstrap
with_mpc
...
...
@@ -1464,6 +1465,7 @@ Optional Features:
disable libquadmath support for Fortran
--enable-libada build libada directory
--enable-libssp build libssp directory
--disable-libstdcxx do not build libstdc++-v3 directory
--enable-static-libjava[=ARG]
build static libjava [default=no]
--enable-bootstrap enable bootstrapping [yes if native build]
...
...
@@ -3073,6 +3075,17 @@ else
fi
# Check whether --enable-libstdcxx was given.
if
test
"
${
enable_libstdcxx
+set
}
"
=
set
;
then
:
enableval
=
$enable_libstdcxx
;
ENABLE_LIBSTDCXX
=
$enableval
else
ENABLE_LIBSTDCXX
=
default
fi
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
...
...
@@ -3216,19 +3229,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
...
...
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