diff options
author | David Daney <ddaney@avtrex.com> | 2008-09-05 17:09:02 +0000 |
---|---|---|
committer | David Daney <daney@gcc.gnu.org> | 2008-09-05 17:09:02 +0000 |
commit | c07cd2c7c4d054415c8c0674617aab31efe9c73f (patch) | |
tree | 5d217d4a6170f98ed2c4e56aa9f9040d46d5fdeb /libjava/configure.ac | |
parent | 7aa4a1dfa98e1368ba4cb05b5bd19f9c96def4fb (diff) | |
download | gcc-c07cd2c7c4d054415c8c0674617aab31efe9c73f.zip gcc-c07cd2c7c4d054415c8c0674617aab31efe9c73f.tar.gz gcc-c07cd2c7c4d054415c8c0674617aab31efe9c73f.tar.bz2 |
install.texi (--enable-reduced-reflection): Document new option.
2008-09-05 David Daney <ddaney@avtrex.com>
* doc/install.texi (--enable-reduced-reflection): Document new option.
2008-09-05 David Daney <ddaney@avtrex.com>
* configure.ac (reduced-reflection): New AC_ARG_ENABLE.
(build_libgcj_reduced_reflection): New variable.
(BUILD_LIBGCJ_REDUCED_REFLECTION): New AM_CONDITIONAL.
* Makefile.am (LIBGCJ_REDUCED_REFLECTION_FLAGS): New variable.
(%.lo: %.list): Add LIBGCJ_REDUCED_REFLECTION_FLAGS to compile
command.
(java/util/concurrent.lo, java/util/concurrent/atomic.lo,
java/util/concurrent/locks.lo): Override
LIBGCJ_REDUCED_REFLECTION_FLAGS.
* Makefile.in, include/Makefile.in, testsuite/Makefile.in,
gcj/Makefile.in, configure: Regenerate.
From-SVN: r140038
Diffstat (limited to 'libjava/configure.ac')
-rw-r--r-- | libjava/configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libjava/configure.ac b/libjava/configure.ac index 6b7949f..fc2083f 100644 --- a/libjava/configure.ac +++ b/libjava/configure.ac @@ -526,6 +526,15 @@ AC_ARG_ENABLE(libgcj-bc, fi]) AM_CONDITIONAL(SUPPRESS_LIBGCJ_BC, test "$suppress_libgcj_bc" = "yes") +build_libgcj_reduced_reflection=no +AC_ARG_ENABLE(reduced-reflection, + AS_HELP_STRING([--enable-reduced-reflection], + [enable or disable(default) -freduced-reflection when building portions of libgcj]), + [if test "$enable_reduced_reflection" = "yes"; then + build_libgcj_reduced_reflection=yes + fi]) +AM_CONDITIONAL(BUILD_LIBGCJ_REDUCED_REFLECTION, test "$build_libgcj_reduced_reflection" = "yes") + # What is the native OS API for MinGW? AC_ARG_WITH(win32-nlsapi, AS_HELP_STRING([--with-win32-nlsapi=ansi or unicows or unicode], |