< prev index next >

common/autoconf/generated-configure.sh

Print this page

        

*** 682,691 **** --- 682,692 ---- GCOV_ENABLED ZIP_DEBUGINFO_FILES ENABLE_DEBUG_SYMBOLS CFLAGS_WARNINGS_ARE_ERRORS DISABLE_WARNING_PREFIX + WARNINGS_AS_ERRORS COMPILER_SUPPORTS_TARGET_BITS_FLAG ZERO_ARCHFLAG LDFLAGS_TESTEXE_SUFFIX LDFLAGS_TESTLIB_SUFFIX LDFLAGS_TESTEXE
*** 725,735 **** C_FLAG_DEPS SET_SHARED_LIBRARY_MAPFILE SET_SHARED_LIBRARY_NAME SET_SHARED_LIBRARY_ORIGIN SET_EXECUTABLE_ORIGIN - SHARED_LIBRARY_FLAGS CXX_FLAG_REORDER C_FLAG_REORDER SYSROOT_LDFLAGS SYSROOT_CFLAGS RC_FLAGS --- 726,735 ----
*** 1089,1098 **** --- 1089,1099 ---- with_toolchain_version with_jtreg with_extra_cflags with_extra_cxxflags with_extra_ldflags + enable_warnings_as_errors enable_debug_symbols enable_zip_debug_info enable_native_coverage with_x with_cups
*** 1857,1866 **** --- 1858,1870 ---- --enable-unlimited-crypto Enable unlimited crypto policy [disabled] --enable-rmiconnector-iiop enable the JMX RMIConnector iiop transport [disabled] + --disable-warnings-as-errors + do not consider native warnings to be an error + [enabled] --disable-debug-symbols disable generation of debug symbols [enabled] --disable-zip-debug-info disable zipping of debug-info files [enabled] --enable-native-coverage enable native compilation with code coverage
*** 4363,4373 **** # 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=1429260097 ############################################################################### # # Initialization / Boot-strapping # --- 4367,4377 ---- # 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=1429267013 ############################################################################### # # Initialization / Boot-strapping #
*** 42264,42274 **** - if test "x$OPENJDK_TARGET_OS" = xsolaris; then CFLAGS_JDK="${CFLAGS_JDK} -D__solaris__" CXXFLAGS_JDK="${CXXFLAGS_JDK} -D__solaris__" CFLAGS_JDKLIB_EXTRA='-xstrconst' fi --- 42268,42277 ----
*** 42974,42983 **** --- 42977,43011 ---- COMPILER_SUPPORTS_TARGET_BITS_FLAG=false fi + # Check whether --enable-warnings-as-errors was given. + if test "${enable_warnings_as_errors+set}" = set; then : + enableval=$enable_warnings_as_errors; + fi + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if native warnings are errors" >&5 + $as_echo_n "checking if native warnings are errors... " >&6; } + if test "x$enable_warnings_as_errors" = "xyes"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes (explicitely set)" >&5 + $as_echo "yes (explicitely set)" >&6; } + WARNINGS_AS_ERRORS=true + elif test "x$enable_warnings_as_errors" = "xno"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } + WARNINGS_AS_ERRORS=false + elif test "x$enable_warnings_as_errors" = "x"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes (default)" >&5 + $as_echo "yes (default)" >&6; } + WARNINGS_AS_ERRORS=true + else + as_fn_error $? "--enable-warnings-as-errors accepts no argument" "$LINENO" 5 + fi + + case "${TOOLCHAIN_TYPE}" in microsoft) DISABLE_WARNING_PREFIX="-wd" CFLAGS_WARNINGS_ARE_ERRORS="-WX" ;;
< prev index next >