< prev index next >

common/autoconf/generated-configure.sh

Print this page

        

@@ -679,10 +679,11 @@
 MSVCR_DLL
 LIBCXX
 STATIC_CXX_SETTING
 FIXPATH
 GCOV_ENABLED
+DEBUG_SYMBOLS
 ZIP_DEBUGINFO_FILES
 ENABLE_DEBUG_SYMBOLS
 CFLAGS_WARNINGS_ARE_ERRORS
 DISABLE_WARNING_PREFIX
 HOTSPOT_SET_WARNINGS_AS_ERRORS

@@ -1084,10 +1085,11 @@
 with_build_devkit
 with_jtreg
 enable_warnings_as_errors
 enable_debug_symbols
 enable_zip_debug_info
+with_debug_symbols
 enable_native_coverage
 with_stdc__lib
 with_msvcr_dll
 with_msvcp_dll
 with_x

@@ -1949,10 +1951,12 @@
                           the version of the toolchain to look for, use
                           '--help' to show possible values [platform
                           dependent]
   --with-build-devkit     Devkit to use for the build platform toolchain
   --with-jtreg            Regression Test Harness [probed]
+  --with-debug-symbols    set the debug symbol configuration (none, internal,
+                          external, zipped) [zipped]
   --with-stdc++lib=<static>,<dynamic>,<default>
                           force linking of the C++ runtime on Linux to either
                           static or dynamic, default is static with dynamic as
                           fallback
   --with-msvcr-dll        path to microsoft C runtime dll (msvcr*.dll)

@@ -4608,11 +4612,11 @@
 # definitions. It is replaced with custom functionality when building
 # custom sources.
 #CUSTOM_AUTOCONF_INCLUDE
 
 # Do not change or remove the following line, it is needed for consistency checks:
-DATE_WHEN_GENERATED=1446762265
+DATE_WHEN_GENERATED=1447730912
 
 ###############################################################################
 #
 # Initialization / Boot-strapping
 #

@@ -45363,10 +45367,35 @@
     ZIP_DEBUGINFO_FILES=false
   else
     ZIP_DEBUGINFO_FILES=true
   fi
 
+  #
+  # DEBUG_SYMBOLS
+  #
+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking what type of debug symbols to use" >&5
+$as_echo_n "checking what type of debug symbols to use... " >&6; }
+  DEBUG_SYMBOLS="zipped"
+
+# Check whether --with-debug-symbols was given.
+if test "${with_debug_symbols+set}" = set; then :
+  withval=$with_debug_symbols;
+        DEBUG_SYMBOLS="${withval}"
+
+fi
+
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DEBUG_SYMBOLS" >&5
+$as_echo "$DEBUG_SYMBOLS" >&6; }
+
+  if test "x$DEBUG_SYMBOLS" != xzipped && \
+      test "x$DEBUG_SYMBOLS" != xnone && \
+      test "x$DEBUG_SYMBOLS" != xinternal && \
+      test "x$DEBUG_SYMBOLS" != xexternal; then
+    as_fn_error $? "Allowed debug symbols are: none, internal, external, zipped" "$LINENO" 5
+  fi
+
+
 
 
 
 
   # Check whether --enable-native-coverage was given.
< prev index next >