mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-30 09:09:16 +08:00
sim: unify -Werror build settings
Move these options up to the common dir so we only test & export them once across all ports. It also enables -Werror usage on the common files we've been pulling out of arch subdirs.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* Makefile.am (AM_CFLAGS): New variable.
|
||||||
|
* arch-subdir.mk.in (WARN_CFLAGS, WERROR_CFLAGS): New variables.
|
||||||
|
* configure.ac: Call SIM_AC_OPTION_WARNINGS.
|
||||||
|
* m4/sim_ac_output.m4: Delete SIM_AC_OPTION_WARNINGS require.
|
||||||
|
* aclocal.m4, configure, Makefile.in: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* m4/sim_ac_option_warnings.m4: Delete 1st arg to macro.
|
* m4/sim_ac_option_warnings.m4: Delete 1st arg to macro.
|
||||||
|
@ -35,6 +35,7 @@ CLEANFILES =
|
|||||||
DISTCLEANFILES =
|
DISTCLEANFILES =
|
||||||
MOSTLYCLEANFILES = core
|
MOSTLYCLEANFILES = core
|
||||||
|
|
||||||
|
AM_CFLAGS = $(WERROR_CFLAGS) $(WARN_CFLAGS)
|
||||||
AM_CPPFLAGS = -I$(srcroot)/include
|
AM_CPPFLAGS = -I$(srcroot)/include
|
||||||
|
|
||||||
COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(AM_CPPFLAGS) $(CFLAGS_FOR_BUILD)
|
COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(AM_CPPFLAGS) $(CFLAGS_FOR_BUILD)
|
||||||
|
@ -206,6 +206,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
|
|||||||
$(top_srcdir)/m4/sim_ac_option_profile.m4 \
|
$(top_srcdir)/m4/sim_ac_option_profile.m4 \
|
||||||
$(top_srcdir)/m4/sim_ac_option_stdio.m4 \
|
$(top_srcdir)/m4/sim_ac_option_stdio.m4 \
|
||||||
$(top_srcdir)/m4/sim_ac_option_trace.m4 \
|
$(top_srcdir)/m4/sim_ac_option_trace.m4 \
|
||||||
|
$(top_srcdir)/m4/sim_ac_option_warnings.m4 \
|
||||||
$(top_srcdir)/m4/sim_ac_platform.m4 \
|
$(top_srcdir)/m4/sim_ac_platform.m4 \
|
||||||
$(top_srcdir)/m4/sim_ac_toolchain.m4 \
|
$(top_srcdir)/m4/sim_ac_toolchain.m4 \
|
||||||
$(top_srcdir)/configure.ac
|
$(top_srcdir)/configure.ac
|
||||||
@ -667,6 +668,8 @@ SHELL = @SHELL@
|
|||||||
SIM_PRIMARY_TARGET = @SIM_PRIMARY_TARGET@
|
SIM_PRIMARY_TARGET = @SIM_PRIMARY_TARGET@
|
||||||
STRIP = @STRIP@
|
STRIP = @STRIP@
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
|
WARN_CFLAGS = @WARN_CFLAGS@
|
||||||
|
WERROR_CFLAGS = @WERROR_CFLAGS@
|
||||||
abs_builddir = @abs_builddir@
|
abs_builddir = @abs_builddir@
|
||||||
abs_srcdir = @abs_srcdir@
|
abs_srcdir = @abs_srcdir@
|
||||||
abs_top_builddir = @abs_top_builddir@
|
abs_top_builddir = @abs_top_builddir@
|
||||||
@ -738,6 +741,7 @@ CLEANFILES = common/version.c common/version.c-stamp \
|
|||||||
DISTCLEANFILES =
|
DISTCLEANFILES =
|
||||||
MOSTLYCLEANFILES = core $(am__append_4) site-srcdir.exp testrun.log \
|
MOSTLYCLEANFILES = core $(am__append_4) site-srcdir.exp testrun.log \
|
||||||
testrun.sum
|
testrun.sum
|
||||||
|
AM_CFLAGS = $(WERROR_CFLAGS) $(WARN_CFLAGS)
|
||||||
AM_CPPFLAGS = -I$(srcroot)/include -I$(srcdir)/common
|
AM_CPPFLAGS = -I$(srcroot)/include -I$(srcdir)/common
|
||||||
COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(AM_CPPFLAGS) $(CFLAGS_FOR_BUILD)
|
COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(AM_CPPFLAGS) $(CFLAGS_FOR_BUILD)
|
||||||
LINK_FOR_BUILD = $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@
|
LINK_FOR_BUILD = $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/aarch64/aclocal.m4
vendored
1
sim/aarch64/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/aarch64/configure
vendored
113
sim/aarch64/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
1
sim/aclocal.m4
vendored
1
sim/aclocal.m4
vendored
@ -1179,5 +1179,6 @@ m4_include([m4/sim_ac_option_environment.m4])
|
|||||||
m4_include([m4/sim_ac_option_profile.m4])
|
m4_include([m4/sim_ac_option_profile.m4])
|
||||||
m4_include([m4/sim_ac_option_stdio.m4])
|
m4_include([m4/sim_ac_option_stdio.m4])
|
||||||
m4_include([m4/sim_ac_option_trace.m4])
|
m4_include([m4/sim_ac_option_trace.m4])
|
||||||
|
m4_include([m4/sim_ac_option_warnings.m4])
|
||||||
m4_include([m4/sim_ac_platform.m4])
|
m4_include([m4/sim_ac_platform.m4])
|
||||||
m4_include([m4/sim_ac_toolchain.m4])
|
m4_include([m4/sim_ac_toolchain.m4])
|
||||||
|
@ -16,3 +16,6 @@
|
|||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
WARN_CFLAGS = @WARN_CFLAGS@
|
||||||
|
WERROR_CFLAGS = @WERROR_CFLAGS@
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/arm/aclocal.m4
vendored
1
sim/arm/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/arm/configure
vendored
113
sim/arm/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/avr/aclocal.m4
vendored
1
sim/avr/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/avr/configure
vendored
113
sim/avr/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/bfin/aclocal.m4
vendored
1
sim/bfin/aclocal.m4
vendored
@ -114,6 +114,5 @@ m4_include([../m4/sim_ac_common.m4])
|
|||||||
m4_include([../m4/sim_ac_option_default_model.m4])
|
m4_include([../m4/sim_ac_option_default_model.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/bfin/configure
vendored
113
sim/bfin/configure
vendored
@ -751,8 +751,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -773,9 +771,6 @@ enable_maintainer_mode
|
|||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_sim_default_model
|
enable_sim_default_model
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
host_alias
|
host_alias
|
||||||
@ -1423,11 +1418,6 @@ Optional Features:
|
|||||||
Specify default model to simulate
|
Specify default model to simulate
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||||
@ -10757,7 +10747,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10760 "configure"
|
#line 10750 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10863,7 +10853,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10866 "configure"
|
#line 10856 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11569,105 +11559,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
cgen_breaks=""
|
cgen_breaks=""
|
||||||
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
||||||
cgen_breaks="break cgen_rtx_error";
|
cgen_breaks="break cgen_rtx_error";
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
||||||
|
1
sim/bpf/aclocal.m4
vendored
1
sim/bpf/aclocal.m4
vendored
@ -116,6 +116,5 @@ m4_include([../m4/sim_ac_option_default_model.m4])
|
|||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_scache.m4])
|
m4_include([../m4/sim_ac_option_scache.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/bpf/configure
vendored
113
sim/bpf/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_scache
|
sim_scache
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
@ -773,9 +771,6 @@ enable_sim_bitsize
|
|||||||
enable_sim_scache
|
enable_sim_scache
|
||||||
enable_sim_default_model
|
enable_sim_default_model
|
||||||
enable_cgen_maint
|
enable_cgen_maint
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1421,11 +1416,6 @@ Optional Features:
|
|||||||
--enable-sim-default-model=model
|
--enable-sim-default-model=model
|
||||||
Specify default model to simulate
|
Specify default model to simulate
|
||||||
--enable-cgen-maint=DIR build cgen generated files
|
--enable-cgen-maint=DIR build cgen generated files
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10750,7 +10740,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10753 "configure"
|
#line 10743 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10856,7 +10846,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10859 "configure"
|
#line 10849 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11280,105 +11270,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* Make-common.in (WARN_CFLAGS, WERROR_CFLAGS): Delete.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Make-common.in: Include ../arch-subdir.mk.
|
* Make-common.in: Include ../arch-subdir.mk.
|
||||||
|
@ -96,8 +96,6 @@ SIM_HW = @sim_hw@
|
|||||||
SIM_INLINE = @sim_inline@
|
SIM_INLINE = @sim_inline@
|
||||||
SIM_RESERVED_BITS = @sim_reserved_bits@
|
SIM_RESERVED_BITS = @sim_reserved_bits@
|
||||||
SIM_SCACHE = @sim_scache@
|
SIM_SCACHE = @sim_scache@
|
||||||
WARN_CFLAGS = @WARN_CFLAGS@
|
|
||||||
WERROR_CFLAGS = @WERROR_CFLAGS@
|
|
||||||
SIM_WARN_CFLAGS = $(WARN_CFLAGS)
|
SIM_WARN_CFLAGS = $(WARN_CFLAGS)
|
||||||
SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
|
SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
|
||||||
|
|
||||||
|
111
sim/configure
vendored
111
sim/configure
vendored
@ -743,7 +743,9 @@ PACKAGE_VERSION
|
|||||||
PACKAGE_TARNAME
|
PACKAGE_TARNAME
|
||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL'
|
SHELL
|
||||||
|
WERROR_CFLAGS
|
||||||
|
WARN_CFLAGS'
|
||||||
ac_subst_files=''
|
ac_subst_files=''
|
||||||
ac_user_opts='
|
ac_user_opts='
|
||||||
enable_option_checking
|
enable_option_checking
|
||||||
@ -763,6 +765,9 @@ enable_sim_environment
|
|||||||
enable_sim_profile
|
enable_sim_profile
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
|
enable_werror
|
||||||
|
enable_build_warnings
|
||||||
|
enable_sim_build_warnings
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
host_alias
|
host_alias
|
||||||
@ -1451,6 +1456,11 @@ Optional Features:
|
|||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
input/output
|
input/output
|
||||||
--enable-sim-trace=opts Enable tracing of simulated programs
|
--enable-sim-trace=opts Enable tracing of simulated programs
|
||||||
|
--enable-werror treat compile warnings as errors
|
||||||
|
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
||||||
|
--enable-sim-build-warnings
|
||||||
|
enable SIM specific build-time compiler warnings if
|
||||||
|
gcc is used
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||||
@ -6883,6 +6893,105 @@ _ACEOF
|
|||||||
$as_echo "$sim_trace" >&6; }
|
$as_echo "$sim_trace" >&6; }
|
||||||
|
|
||||||
|
|
||||||
|
# Check whether --enable-werror was given.
|
||||||
|
if test "${enable_werror+set}" = set; then :
|
||||||
|
enableval=$enable_werror; case "${enableval}" in
|
||||||
|
yes | y) ERROR_ON_WARNING="yes" ;;
|
||||||
|
no | n) ERROR_ON_WARNING="no" ;;
|
||||||
|
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
||||||
|
ERROR_ON_WARNING=yes
|
||||||
|
fi
|
||||||
|
|
||||||
|
WERROR_CFLAGS=""
|
||||||
|
if test "${ERROR_ON_WARNING}" = yes ; then
|
||||||
|
WERROR_CFLAGS="-Werror"
|
||||||
|
fi
|
||||||
|
|
||||||
|
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
||||||
|
-Wpointer-sign \
|
||||||
|
-Wno-unused -Wunused-value -Wunused-function \
|
||||||
|
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
||||||
|
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
||||||
|
-Wold-style-declaration -Wold-style-definition"
|
||||||
|
|
||||||
|
# Enable -Wno-format by default when using gcc on mingw since many
|
||||||
|
# GCC versions complain about %I64.
|
||||||
|
case "${host}" in
|
||||||
|
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
||||||
|
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Check whether --enable-build-warnings was given.
|
||||||
|
if test "${enable_build_warnings+set}" = set; then :
|
||||||
|
enableval=$enable_build_warnings; case "${enableval}" in
|
||||||
|
yes) ;;
|
||||||
|
no) build_warnings="-w";;
|
||||||
|
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
||||||
|
build_warnings="${build_warnings} ${t}";;
|
||||||
|
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
||||||
|
build_warnings="${t} ${build_warnings}";;
|
||||||
|
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
||||||
|
esac
|
||||||
|
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
||||||
|
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
# Check whether --enable-sim-build-warnings was given.
|
||||||
|
if test "${enable_sim_build_warnings+set}" = set; then :
|
||||||
|
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
||||||
|
yes) ;;
|
||||||
|
no) build_warnings="-w";;
|
||||||
|
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
||||||
|
build_warnings="${build_warnings} ${t}";;
|
||||||
|
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
||||||
|
build_warnings="${t} ${build_warnings}";;
|
||||||
|
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
||||||
|
esac
|
||||||
|
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
||||||
|
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
WARN_CFLAGS=""
|
||||||
|
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
||||||
|
then
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
||||||
|
$as_echo_n "checking compiler warning flags... " >&6; }
|
||||||
|
# Separate out the -Werror flag as some files just cannot be
|
||||||
|
# compiled with it enabled.
|
||||||
|
for w in ${build_warnings}; do
|
||||||
|
case $w in
|
||||||
|
-Werr*) WERROR_CFLAGS=-Werror ;;
|
||||||
|
*) # Check that GCC accepts it
|
||||||
|
saved_CFLAGS="$CFLAGS"
|
||||||
|
CFLAGS="$CFLAGS -Werror $w"
|
||||||
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
/* end confdefs.h. */
|
||||||
|
|
||||||
|
int
|
||||||
|
main ()
|
||||||
|
{
|
||||||
|
|
||||||
|
;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
_ACEOF
|
||||||
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
||||||
|
fi
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
||||||
|
CFLAGS="$saved_CFLAGS"
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
||||||
|
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
ac_config_files="$ac_config_files arch-subdir.mk Makefile"
|
ac_config_files="$ac_config_files arch-subdir.mk Makefile"
|
||||||
|
|
||||||
cat >confcache <<\_ACEOF
|
cat >confcache <<\_ACEOF
|
||||||
|
@ -117,6 +117,7 @@ SIM_AC_OPTION_ENVIRONMENT
|
|||||||
SIM_AC_OPTION_PROFILE
|
SIM_AC_OPTION_PROFILE
|
||||||
SIM_AC_OPTION_STDIO
|
SIM_AC_OPTION_STDIO
|
||||||
SIM_AC_OPTION_TRACE
|
SIM_AC_OPTION_TRACE
|
||||||
|
SIM_AC_OPTION_WARNINGS
|
||||||
|
|
||||||
AC_CONFIG_FILES([arch-subdir.mk Makefile])
|
AC_CONFIG_FILES([arch-subdir.mk Makefile])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/cr16/aclocal.m4
vendored
1
sim/cr16/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/cr16/configure
vendored
113
sim/cr16/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
||||||
|
1
sim/cris/aclocal.m4
vendored
1
sim/cris/aclocal.m4
vendored
@ -115,6 +115,5 @@ m4_include([../m4/sim_ac_option_default_model.m4])
|
|||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_scache.m4])
|
m4_include([../m4/sim_ac_option_scache.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/cris/configure
vendored
113
sim/cris/configure
vendored
@ -748,8 +748,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_scache
|
sim_scache
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
@ -773,9 +771,6 @@ enable_sim_scache
|
|||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
enable_sim_default_model
|
enable_sim_default_model
|
||||||
enable_cgen_maint
|
enable_cgen_maint
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
host_alias
|
host_alias
|
||||||
@ -1421,11 +1416,6 @@ Optional Features:
|
|||||||
--enable-sim-default-model=model
|
--enable-sim-default-model=model
|
||||||
Specify default model to simulate
|
Specify default model to simulate
|
||||||
--enable-cgen-maint=DIR build cgen generated files
|
--enable-cgen-maint=DIR build cgen generated files
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||||
@ -10748,7 +10738,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10751 "configure"
|
#line 10741 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10854,7 +10844,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10857 "configure"
|
#line 10847 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11318,105 +11308,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
cgen_breaks=""
|
cgen_breaks=""
|
||||||
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
||||||
cgen_breaks="break cgen_rtx_error";
|
cgen_breaks="break cgen_rtx_error";
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/d10v/aclocal.m4
vendored
1
sim/d10v/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/d10v/configure
vendored
113
sim/d10v/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
||||||
|
1
sim/erc32/aclocal.m4
vendored
1
sim/erc32/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/erc32/configure
vendored
113
sim/erc32/configure
vendored
@ -750,8 +750,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -769,9 +767,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1411,11 +1406,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10740,7 +10730,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10743 "configure"
|
#line 10733 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10846,7 +10836,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10849 "configure"
|
#line 10839 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11283,105 +11273,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/example-synacor/aclocal.m4
vendored
1
sim/example-synacor/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/example-synacor/configure
vendored
113
sim/example-synacor/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
||||||
|
1
sim/frv/aclocal.m4
vendored
1
sim/frv/aclocal.m4
vendored
@ -115,6 +115,5 @@ m4_include([../m4/sim_ac_option_default_model.m4])
|
|||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_scache.m4])
|
m4_include([../m4/sim_ac_option_scache.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/frv/configure
vendored
113
sim/frv/configure
vendored
@ -749,8 +749,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_scache
|
sim_scache
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
@ -774,9 +772,6 @@ enable_sim_scache
|
|||||||
enable_sim_default_model
|
enable_sim_default_model
|
||||||
enable_cgen_maint
|
enable_cgen_maint
|
||||||
enable_sim_trapdump
|
enable_sim_trapdump
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1422,11 +1417,6 @@ Optional Features:
|
|||||||
Specify default model to simulate
|
Specify default model to simulate
|
||||||
--enable-cgen-maint=DIR build cgen generated files
|
--enable-cgen-maint=DIR build cgen generated files
|
||||||
--enable-sim-trapdump Make unknown traps dump the registers
|
--enable-sim-trapdump Make unknown traps dump the registers
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10751,7 +10741,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10754 "configure"
|
#line 10744 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10857,7 +10847,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10860 "configure"
|
#line 10850 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11240,105 +11230,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/ft32/aclocal.m4
vendored
1
sim/ft32/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/ft32/configure
vendored
113
sim/ft32/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/h8300/aclocal.m4
vendored
1
sim/h8300/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/h8300/configure
vendored
113
sim/h8300/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
||||||
|
1
sim/iq2000/aclocal.m4
vendored
1
sim/iq2000/aclocal.m4
vendored
@ -115,6 +115,5 @@ m4_include([../m4/sim_ac_option_default_model.m4])
|
|||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_scache.m4])
|
m4_include([../m4/sim_ac_option_scache.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/iq2000/configure
vendored
113
sim/iq2000/configure
vendored
@ -748,8 +748,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_scache
|
sim_scache
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
@ -772,9 +770,6 @@ enable_sim_inline
|
|||||||
enable_sim_scache
|
enable_sim_scache
|
||||||
enable_sim_default_model
|
enable_sim_default_model
|
||||||
enable_cgen_maint
|
enable_cgen_maint
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1419,11 +1414,6 @@ Optional Features:
|
|||||||
--enable-sim-default-model=model
|
--enable-sim-default-model=model
|
||||||
Specify default model to simulate
|
Specify default model to simulate
|
||||||
--enable-cgen-maint=DIR build cgen generated files
|
--enable-cgen-maint=DIR build cgen generated files
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10748,7 +10738,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10751 "configure"
|
#line 10741 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10854,7 +10844,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10857 "configure"
|
#line 10847 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11219,105 +11209,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
||||||
|
1
sim/lm32/aclocal.m4
vendored
1
sim/lm32/aclocal.m4
vendored
@ -115,6 +115,5 @@ m4_include([../m4/sim_ac_option_default_model.m4])
|
|||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_scache.m4])
|
m4_include([../m4/sim_ac_option_scache.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/lm32/configure
vendored
113
sim/lm32/configure
vendored
@ -748,8 +748,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_scache
|
sim_scache
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
@ -773,9 +771,6 @@ enable_sim_scache
|
|||||||
enable_sim_default_model
|
enable_sim_default_model
|
||||||
enable_cgen_maint
|
enable_cgen_maint
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
host_alias
|
host_alias
|
||||||
@ -1421,11 +1416,6 @@ Optional Features:
|
|||||||
--enable-cgen-maint=DIR build cgen generated files
|
--enable-cgen-maint=DIR build cgen generated files
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||||
@ -10748,7 +10738,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10751 "configure"
|
#line 10741 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10854,7 +10844,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10857 "configure"
|
#line 10847 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11316,105 +11306,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
cgen_breaks=""
|
cgen_breaks=""
|
||||||
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
||||||
cgen_breaks="break cgen_rtx_error";
|
cgen_breaks="break cgen_rtx_error";
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/m32c/aclocal.m4
vendored
1
sim/m32c/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/m32c/configure
vendored
113
sim/m32c/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
||||||
|
1
sim/m32r/aclocal.m4
vendored
1
sim/m32r/aclocal.m4
vendored
@ -115,6 +115,5 @@ m4_include([../m4/sim_ac_option_default_model.m4])
|
|||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_scache.m4])
|
m4_include([../m4/sim_ac_option_scache.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/m32r/configure
vendored
113
sim/m32r/configure
vendored
@ -750,8 +750,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_scache
|
sim_scache
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
@ -775,9 +773,6 @@ enable_sim_scache
|
|||||||
enable_sim_default_model
|
enable_sim_default_model
|
||||||
enable_cgen_maint
|
enable_cgen_maint
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
host_alias
|
host_alias
|
||||||
@ -1423,11 +1418,6 @@ Optional Features:
|
|||||||
--enable-cgen-maint=DIR build cgen generated files
|
--enable-cgen-maint=DIR build cgen generated files
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||||
@ -10750,7 +10740,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10753 "configure"
|
#line 10743 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10856,7 +10846,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10859 "configure"
|
#line 10849 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11332,105 +11322,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
cgen_breaks=""
|
cgen_breaks=""
|
||||||
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
||||||
cgen_breaks="break cgen_rtx_error";
|
cgen_breaks="break cgen_rtx_error";
|
||||||
|
@ -21,7 +21,6 @@ dnl one afterwards. The two pieces of the common fragment are inserted into
|
|||||||
dnl the target's fragment at the appropriate points.
|
dnl the target's fragment at the appropriate points.
|
||||||
AC_DEFUN([SIM_AC_OUTPUT],
|
AC_DEFUN([SIM_AC_OUTPUT],
|
||||||
[dnl
|
[dnl
|
||||||
AC_REQUIRE([SIM_AC_OPTION_WARNINGS])dnl
|
|
||||||
AC_REQUIRE([SIM_AC_OPTION_HARDWARE])dnl
|
AC_REQUIRE([SIM_AC_OPTION_HARDWARE])dnl
|
||||||
|
|
||||||
dnl Make @cgen_breaks@ non-null only if the sim uses CGEN.
|
dnl Make @cgen_breaks@ non-null only if the sim uses CGEN.
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/m68hc11/aclocal.m4
vendored
1
sim/m68hc11/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/m68hc11/configure
vendored
113
sim/m68hc11/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -767,9 +765,6 @@ enable_libtool_lock
|
|||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
host_alias
|
host_alias
|
||||||
@ -1410,11 +1405,6 @@ Optional Features:
|
|||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11238,105 +11228,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
cgen_breaks=""
|
cgen_breaks=""
|
||||||
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
||||||
cgen_breaks="break cgen_rtx_error";
|
cgen_breaks="break cgen_rtx_error";
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/mcore/aclocal.m4
vendored
1
sim/mcore/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/mcore/configure
vendored
113
sim/mcore/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/microblaze/aclocal.m4
vendored
1
sim/microblaze/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/microblaze/configure
vendored
113
sim/microblaze/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
||||||
|
1
sim/mips/aclocal.m4
vendored
1
sim/mips/aclocal.m4
vendored
@ -115,6 +115,5 @@ m4_include([../m4/sim_ac_option_float.m4])
|
|||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_reserved_bits.m4])
|
m4_include([../m4/sim_ac_option_reserved_bits.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/mips/configure
vendored
113
sim/mips/configure
vendored
@ -755,8 +755,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_reserved_bits
|
sim_reserved_bits
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
@ -782,9 +780,6 @@ enable_sim_bitsize
|
|||||||
enable_sim_float
|
enable_sim_float
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
with_x
|
with_x
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
host_alias
|
host_alias
|
||||||
@ -1436,11 +1431,6 @@ Optional Features:
|
|||||||
hardware
|
hardware
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||||
@ -10765,7 +10755,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10768 "configure"
|
#line 10758 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10871,7 +10861,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10874 "configure"
|
#line 10864 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12005,105 +11995,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
cgen_breaks=""
|
cgen_breaks=""
|
||||||
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
||||||
cgen_breaks="break cgen_rtx_error";
|
cgen_breaks="break cgen_rtx_error";
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/mn10300/aclocal.m4
vendored
1
sim/mn10300/aclocal.m4
vendored
@ -114,6 +114,5 @@ m4_include([../m4/sim_ac_option_bitsize.m4])
|
|||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_reserved_bits.m4])
|
m4_include([../m4/sim_ac_option_reserved_bits.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/mn10300/configure
vendored
113
sim/mn10300/configure
vendored
@ -745,8 +745,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_reserved_bits
|
sim_reserved_bits
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
@ -769,9 +767,6 @@ enable_sim_inline
|
|||||||
enable_sim_reserved_bits
|
enable_sim_reserved_bits
|
||||||
enable_sim_bitsize
|
enable_sim_bitsize
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
host_alias
|
host_alias
|
||||||
@ -1416,11 +1411,6 @@ Optional Features:
|
|||||||
--enable-sim-bitsize=N Specify target bitsize (32 or 64)
|
--enable-sim-bitsize=N Specify target bitsize (32 or 64)
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||||
@ -10743,7 +10733,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10746 "configure"
|
#line 10736 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10849,7 +10839,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10852 "configure"
|
#line 10842 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11318,105 +11308,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
cgen_breaks=""
|
cgen_breaks=""
|
||||||
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then
|
||||||
cgen_breaks="break cgen_rtx_error";
|
cgen_breaks="break cgen_rtx_error";
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/moxie/aclocal.m4
vendored
1
sim/moxie/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/moxie/configure
vendored
113
sim/moxie/configure
vendored
@ -748,8 +748,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -767,9 +765,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1409,11 +1404,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10738,7 +10728,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10741 "configure"
|
#line 10731 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10844,7 +10834,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10847 "configure"
|
#line 10837 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11233,105 +11223,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/msp430/aclocal.m4
vendored
1
sim/msp430/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/msp430/configure
vendored
113
sim/msp430/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
* Makefile.in (SIM_WERROR_CFLAGS): New variable.
|
||||||
|
1
sim/or1k/aclocal.m4
vendored
1
sim/or1k/aclocal.m4
vendored
@ -116,6 +116,5 @@ m4_include([../m4/sim_ac_option_default_model.m4])
|
|||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_scache.m4])
|
m4_include([../m4/sim_ac_option_scache.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/or1k/configure
vendored
113
sim/or1k/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_scache
|
sim_scache
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
@ -773,9 +771,6 @@ enable_sim_bitsize
|
|||||||
enable_sim_scache
|
enable_sim_scache
|
||||||
enable_sim_default_model
|
enable_sim_default_model
|
||||||
enable_cgen_maint
|
enable_cgen_maint
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1421,11 +1416,6 @@ Optional Features:
|
|||||||
--enable-sim-default-model=model
|
--enable-sim-default-model=model
|
||||||
Specify default model to simulate
|
Specify default model to simulate
|
||||||
--enable-cgen-maint=DIR build cgen generated files
|
--enable-cgen-maint=DIR build cgen generated files
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10750,7 +10740,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10753 "configure"
|
#line 10743 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10856,7 +10846,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10859 "configure"
|
#line 10849 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11280,105 +11270,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* Makefile.in (WERROR_CFLAGS): Delete.
|
||||||
|
* configure.ac: Delete werror configure option.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* Makefile.in: Include ../arch-subdir.mk.
|
* Makefile.in: Include ../arch-subdir.mk.
|
||||||
|
@ -67,7 +67,6 @@ AR = @AR@
|
|||||||
AR_FLAGS = rc
|
AR_FLAGS = rc
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
WERROR_CFLAGS = @WERROR_CFLAGS@
|
|
||||||
CC_FOR_BUILD = @CC_FOR_BUILD@
|
CC_FOR_BUILD = @CC_FOR_BUILD@
|
||||||
CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
|
CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
|
||||||
BISON = bison
|
BISON = bison
|
||||||
|
25
sim/ppc/configure
vendored
25
sim/ppc/configure
vendored
@ -675,7 +675,6 @@ build_os
|
|||||||
build_vendor
|
build_vendor
|
||||||
build_cpu
|
build_cpu
|
||||||
build
|
build
|
||||||
WERROR_CFLAGS
|
|
||||||
CATOBJEXT
|
CATOBJEXT
|
||||||
GENCAT
|
GENCAT
|
||||||
INSTOBJEXT
|
INSTOBJEXT
|
||||||
@ -761,7 +760,6 @@ enable_sim_reserved_bits
|
|||||||
enable_sim_smp
|
enable_sim_smp
|
||||||
enable_sim_switch
|
enable_sim_switch
|
||||||
enable_sim_timebase
|
enable_sim_timebase
|
||||||
enable_werror
|
|
||||||
enable_sim_warnings
|
enable_sim_warnings
|
||||||
enable_sim_xor_endian
|
enable_sim_xor_endian
|
||||||
with_system_zlib
|
with_system_zlib
|
||||||
@ -1415,7 +1413,6 @@ Optional Features:
|
|||||||
--enable-sim-smp=n Specify number of processors to configure for.
|
--enable-sim-smp=n Specify number of processors to configure for.
|
||||||
--enable-sim-switch Use a switch instead of a table for instruction call.
|
--enable-sim-switch Use a switch instead of a table for instruction call.
|
||||||
--enable-sim-timebase Specify whether the PPC timebase is supported.
|
--enable-sim-timebase Specify whether the PPC timebase is supported.
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-sim-warnings=opts Extra CFLAGS for turning on compiler warnings except for idecode.o, semantics.o and psim.o
|
--enable-sim-warnings=opts Extra CFLAGS for turning on compiler warnings except for idecode.o, semantics.o and psim.o
|
||||||
--enable-sim-xor-endian=n Specify number bytes involved in PowerPC XOR bi-endian mode (default 8).
|
--enable-sim-xor-endian=n Specify number bytes involved in PowerPC XOR bi-endian mode (default 8).
|
||||||
--enable-plugins Enable support for plugins
|
--enable-plugins Enable support for plugins
|
||||||
@ -3715,28 +3712,6 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Enable -Werror by default when using gcc
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) WERROR_CFLAGS="$WERROR_CFLAGS -Wno-format" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-warnings was given.
|
# Check whether --enable-sim-warnings was given.
|
||||||
if test "${enable_sim_warnings+set}" = set; then :
|
if test "${enable_sim_warnings+set}" = set; then :
|
||||||
enableval=$enable_sim_warnings; case "${enableval}" in
|
enableval=$enable_sim_warnings; case "${enableval}" in
|
||||||
|
@ -479,28 +479,6 @@ if test x"$silent" != x"yes" && test x"$sim_timebase" != x""; then
|
|||||||
fi],[sim_timebase=""])dnl
|
fi],[sim_timebase=""])dnl
|
||||||
|
|
||||||
|
|
||||||
AC_ARG_ENABLE(werror,
|
|
||||||
AS_HELP_STRING([--enable-werror], [treat compile warnings as errors]),
|
|
||||||
[case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;;
|
|
||||||
esac])
|
|
||||||
# Enable -Werror by default when using gcc
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
dnl Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
dnl GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) WERROR_CFLAGS="$WERROR_CFLAGS -Wno-format" ;;
|
|
||||||
esac
|
|
||||||
AC_SUBST(WERROR_CFLAGS)
|
|
||||||
|
|
||||||
AC_ARG_ENABLE(sim-warnings,
|
AC_ARG_ENABLE(sim-warnings,
|
||||||
[ --enable-sim-warnings=opts Extra CFLAGS for turning on compiler warnings except for idecode.o, semantics.o and psim.o],
|
[ --enable-sim-warnings=opts Extra CFLAGS for turning on compiler warnings except for idecode.o, semantics.o and psim.o],
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/pru/aclocal.m4
vendored
1
sim/pru/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/pru/configure
vendored
113
sim/pru/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/riscv/aclocal.m4
vendored
1
sim/riscv/aclocal.m4
vendored
@ -114,6 +114,5 @@ m4_include([../m4/sim_ac_option_bitsize.m4])
|
|||||||
m4_include([../m4/sim_ac_option_default_model.m4])
|
m4_include([../m4/sim_ac_option_default_model.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/riscv/configure
vendored
113
sim/riscv/configure
vendored
@ -745,8 +745,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -768,9 +766,6 @@ enable_maintainer_mode
|
|||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_sim_default_model
|
enable_sim_default_model
|
||||||
enable_sim_bitsize
|
enable_sim_bitsize
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1413,11 +1408,6 @@ Optional Features:
|
|||||||
--enable-sim-default-model=model
|
--enable-sim-default-model=model
|
||||||
Specify default model to simulate
|
Specify default model to simulate
|
||||||
--enable-sim-bitsize=N Specify target bitsize (32 or 64)
|
--enable-sim-bitsize=N Specify target bitsize (32 or 64)
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10742,7 +10732,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10745 "configure"
|
#line 10735 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10848,7 +10838,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10851 "configure"
|
#line 10841 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11233,105 +11223,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/rl78/aclocal.m4
vendored
1
sim/rl78/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
113
sim/rl78/configure
vendored
113
sim/rl78/configure
vendored
@ -747,8 +747,6 @@ PACKAGE_TARNAME
|
|||||||
PACKAGE_NAME
|
PACKAGE_NAME
|
||||||
PATH_SEPARATOR
|
PATH_SEPARATOR
|
||||||
SHELL
|
SHELL
|
||||||
WERROR_CFLAGS
|
|
||||||
WARN_CFLAGS
|
|
||||||
sim_inline
|
sim_inline
|
||||||
sim_hw
|
sim_hw
|
||||||
sim_hw_objs
|
sim_hw_objs
|
||||||
@ -766,9 +764,6 @@ with_gnu_ld
|
|||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_inline
|
enable_sim_inline
|
||||||
enable_werror
|
|
||||||
enable_build_warnings
|
|
||||||
enable_sim_build_warnings
|
|
||||||
enable_sim_hardware
|
enable_sim_hardware
|
||||||
'
|
'
|
||||||
ac_precious_vars='build_alias
|
ac_precious_vars='build_alias
|
||||||
@ -1408,11 +1403,6 @@ Optional Features:
|
|||||||
sometimes confusing) to the casual installer
|
sometimes confusing) to the casual installer
|
||||||
--enable-sim-inline=inlines
|
--enable-sim-inline=inlines
|
||||||
Specify which functions should be inlined
|
Specify which functions should be inlined
|
||||||
--enable-werror treat compile warnings as errors
|
|
||||||
--enable-build-warnings enable build-time compiler warnings if gcc is used
|
|
||||||
--enable-sim-build-warnings
|
|
||||||
enable SIM specific build-time compiler warnings if
|
|
||||||
gcc is used
|
|
||||||
--enable-sim-hardware=LIST
|
--enable-sim-hardware=LIST
|
||||||
Specify the hardware to be included in the build.
|
Specify the hardware to be included in the build.
|
||||||
|
|
||||||
@ -10737,7 +10727,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10740 "configure"
|
#line 10730 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -10843,7 +10833,7 @@ else
|
|||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 10846 "configure"
|
#line 10836 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11139,105 +11129,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-werror was given.
|
|
||||||
if test "${enable_werror+set}" = set; then :
|
|
||||||
enableval=$enable_werror; case "${enableval}" in
|
|
||||||
yes | y) ERROR_ON_WARNING="yes" ;;
|
|
||||||
no | n) ERROR_ON_WARNING="no" ;;
|
|
||||||
*) as_fn_error $? "bad value ${enableval} for --enable-werror" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
|
|
||||||
ERROR_ON_WARNING=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
WERROR_CFLAGS=""
|
|
||||||
if test "${ERROR_ON_WARNING}" = yes ; then
|
|
||||||
WERROR_CFLAGS="-Werror"
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
|
|
||||||
-Wpointer-sign \
|
|
||||||
-Wno-unused -Wunused-value -Wunused-function \
|
|
||||||
-Wno-switch -Wno-char-subscripts -Wmissing-prototypes
|
|
||||||
-Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \
|
|
||||||
-Wold-style-declaration -Wold-style-definition"
|
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
|
||||||
*-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
|
|
||||||
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# Check whether --enable-build-warnings was given.
|
|
||||||
if test "${enable_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# Check whether --enable-sim-build-warnings was given.
|
|
||||||
if test "${enable_sim_build_warnings+set}" = set; then :
|
|
||||||
enableval=$enable_sim_build_warnings; case "${enableval}" in
|
|
||||||
yes) ;;
|
|
||||||
no) build_warnings="-w";;
|
|
||||||
,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${build_warnings} ${t}";;
|
|
||||||
*,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
|
|
||||||
build_warnings="${t} ${build_warnings}";;
|
|
||||||
*) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
|
|
||||||
echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
WARN_CFLAGS=""
|
|
||||||
if test "x${build_warnings}" != x -a "x$GCC" = xyes
|
|
||||||
then
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking compiler warning flags" >&5
|
|
||||||
$as_echo_n "checking compiler warning flags... " >&6; }
|
|
||||||
# Separate out the -Werror flag as some files just cannot be
|
|
||||||
# compiled with it enabled.
|
|
||||||
for w in ${build_warnings}; do
|
|
||||||
case $w in
|
|
||||||
-Werr*) WERROR_CFLAGS=-Werror ;;
|
|
||||||
*) # Check that GCC accepts it
|
|
||||||
saved_CFLAGS="$CFLAGS"
|
|
||||||
CFLAGS="$CFLAGS -Werror $w"
|
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
|
|
||||||
;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
_ACEOF
|
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
|
||||||
WARN_CFLAGS="${WARN_CFLAGS} $w"
|
|
||||||
fi
|
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
||||||
CFLAGS="$saved_CFLAGS"
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${WARN_CFLAGS} ${WERROR_CFLAGS}" >&5
|
|
||||||
$as_echo "${WARN_CFLAGS} ${WERROR_CFLAGS}" >&6; }
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
hardware="cfi core pal glue "
|
hardware="cfi core pal glue "
|
||||||
sim_hw_cflags="-DWITH_HW=1"
|
sim_hw_cflags="-DWITH_HW=1"
|
||||||
sim_hw="$hardware"
|
sim_hw="$hardware"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* aclocal.m4, configure: Regenerate.
|
||||||
|
|
||||||
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
2021-06-18 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
1
sim/rx/aclocal.m4
vendored
1
sim/rx/aclocal.m4
vendored
@ -112,6 +112,5 @@ m4_include([../../lt~obsolete.m4])
|
|||||||
m4_include([../m4/sim_ac_common.m4])
|
m4_include([../m4/sim_ac_common.m4])
|
||||||
m4_include([../m4/sim_ac_option_hardware.m4])
|
m4_include([../m4/sim_ac_option_hardware.m4])
|
||||||
m4_include([../m4/sim_ac_option_inline.m4])
|
m4_include([../m4/sim_ac_option_inline.m4])
|
||||||
m4_include([../m4/sim_ac_option_warnings.m4])
|
|
||||||
m4_include([../m4/sim_ac_output.m4])
|
m4_include([../m4/sim_ac_output.m4])
|
||||||
m4_include([../m4/sim_ac_toolchain.m4])
|
m4_include([../m4/sim_ac_toolchain.m4])
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user