sim: drop --enable-sim-cflags option
No other sub directory provides such a configuration option, so drop it from the sim dir as well. This cleans up a good bit of code in the process. If people want to use custom flags for just the sim, they can still run configure+make by hand in the sim subdir and use the normal CFLAGS settings.
This commit is contained in:
parent
7124407794
commit
22be3fbeac
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/aarch64/configure
vendored
25
sim/aarch64/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1401,8 +1399,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12861,7 +12857,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 12864 "configure"
|
#line 12860 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12967,7 +12963,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 12970 "configure"
|
#line 12966 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13235,23 +13231,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/arm/configure
vendored
25
sim/arm/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1401,8 +1399,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12861,7 +12857,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 12864 "configure"
|
#line 12860 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12967,7 +12963,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 12970 "configure"
|
#line 12966 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13235,23 +13231,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/avr/configure
vendored
25
sim/avr/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1401,8 +1399,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12861,7 +12857,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 12864 "configure"
|
#line 12860 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12967,7 +12963,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 12970 "configure"
|
#line 12966 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13235,23 +13231,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/bfin/configure
vendored
25
sim/bfin/configure
vendored
@ -613,7 +613,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -756,7 +755,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1413,8 +1411,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12884,7 +12880,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 12887 "configure"
|
#line 12883 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12990,7 +12986,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 12993 "configure"
|
#line 12989 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13258,23 +13254,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* acinclude.m4: Delete --enable-sim-cflags and sim_cflags.
|
||||||
|
* Make-common.in (SIM_CFLAGS): Delete.
|
||||||
|
(CONFIG_CFLAGS): Delete $(SIM_CFLAGS).
|
||||||
|
* Makefile.in: Likewise.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* configure.ac: Change SIM_AC_COMMON to AC_PROG_CC. Drop 2nd arg
|
* configure.ac: Change SIM_AC_COMMON to AC_PROG_CC. Drop 2nd arg
|
||||||
|
@ -75,7 +75,6 @@ CFLAGS = @CFLAGS@
|
|||||||
CPPFLAGS = @CPPFLAGS@
|
CPPFLAGS = @CPPFLAGS@
|
||||||
CXXFLAGS = @CXXFLAGS@
|
CXXFLAGS = @CXXFLAGS@
|
||||||
LDFLAGS = @LDFLAGS@
|
LDFLAGS = @LDFLAGS@
|
||||||
SIM_CFLAGS = @sim_cflags@
|
|
||||||
SIM_DEBUG = @sim_debug@
|
SIM_DEBUG = @sim_debug@
|
||||||
SIM_TRACE = @sim_trace@
|
SIM_TRACE = @sim_trace@
|
||||||
SIM_PROFILE = @sim_profile@
|
SIM_PROFILE = @sim_profile@
|
||||||
@ -228,7 +227,6 @@ CGEN_INCLUDE_DEPS = \
|
|||||||
|
|
||||||
CONFIG_CFLAGS = \
|
CONFIG_CFLAGS = \
|
||||||
@DEFS@ \
|
@DEFS@ \
|
||||||
$(SIM_CFLAGS) \
|
|
||||||
$(SIM_DEBUG) \
|
$(SIM_DEBUG) \
|
||||||
$(SIM_DEFAULT_MODEL) \
|
$(SIM_DEFAULT_MODEL) \
|
||||||
$(SIM_TRACE) \
|
$(SIM_TRACE) \
|
||||||
|
@ -48,7 +48,6 @@ INSTALL_DATA = @INSTALL_DATA@
|
|||||||
CC = @CC@
|
CC = @CC@
|
||||||
CC_FOR_BUILD = @CC_FOR_BUILD@
|
CC_FOR_BUILD = @CC_FOR_BUILD@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
SIM_CFLAGS = @sim_cflags@
|
|
||||||
|
|
||||||
# These are used to rebuild nltvals.def.
|
# These are used to rebuild nltvals.def.
|
||||||
CPP_FOR_TARGET = @CPP_FOR_TARGET@
|
CPP_FOR_TARGET = @CPP_FOR_TARGET@
|
||||||
@ -57,7 +56,7 @@ TARGET_SUBDIR = @TARGET_SUBDIR@
|
|||||||
HDEFINES = @HDEFINES@
|
HDEFINES = @HDEFINES@
|
||||||
TDEFINES =
|
TDEFINES =
|
||||||
|
|
||||||
CONFIG_CFLAGS = @DEFS@ $(SIM_CFLAGS) $(HDEFINES) $(TDEFINES)
|
CONFIG_CFLAGS = @DEFS@ $(HDEFINES) $(TDEFINES)
|
||||||
CSEARCH = -I. -I$(srcdir) -I$(srcroot)/include
|
CSEARCH = -I. -I$(srcdir) -I$(srcroot)/include
|
||||||
ALL_CFLAGS = $(CFLAGS) $(CONFIG_CFLAGS) $(CSEARCH)
|
ALL_CFLAGS = $(CFLAGS) $(CONFIG_CFLAGS) $(CSEARCH)
|
||||||
BUILD_CFLAGS = -g -O $(CSEARCH)
|
BUILD_CFLAGS = -g -O $(CSEARCH)
|
||||||
|
@ -133,21 +133,6 @@ dnl --enable-maintainer-mode.
|
|||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
|
|
||||||
|
|
||||||
AC_ARG_ENABLE(sim-cflags,
|
|
||||||
[AS_HELP_STRING([--enable-sim-cflags=opts],
|
|
||||||
[Extra CFLAGS for use in building simulator])],
|
|
||||||
[case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) AC_MSG_ERROR("Please use --enable-sim-debug instead."); sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi],[sim_cflags=""])dnl
|
|
||||||
AC_SUBST(sim_cflags)
|
|
||||||
|
|
||||||
|
|
||||||
dnl --enable-sim-debug is for developers of the simulator
|
dnl --enable-sim-debug is for developers of the simulator
|
||||||
dnl the allowable values are work-in-progress
|
dnl the allowable values are work-in-progress
|
||||||
AC_ARG_ENABLE(sim-debug,
|
AC_ARG_ENABLE(sim-debug,
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/cr16/configure
vendored
25
sim/cr16/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1401,8 +1399,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12861,7 +12857,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 12864 "configure"
|
#line 12860 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12967,7 +12963,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 12970 "configure"
|
#line 12966 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13235,23 +13231,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/cris/configure
vendored
25
sim/cris/configure
vendored
@ -611,7 +611,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -754,7 +753,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1408,8 +1406,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12875,7 +12871,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 12878 "configure"
|
#line 12874 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12981,7 +12977,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 12984 "configure"
|
#line 12980 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13249,23 +13245,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/d10v/configure
vendored
25
sim/d10v/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1401,8 +1399,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12861,7 +12857,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 12864 "configure"
|
#line 12860 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12967,7 +12963,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 12970 "configure"
|
#line 12966 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13235,23 +13231,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/erc32/configure
vendored
25
sim/erc32/configure
vendored
@ -610,7 +610,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -753,7 +752,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1396,8 +1394,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12841,7 +12837,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 12844 "configure"
|
#line 12840 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12947,7 +12943,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 12950 "configure"
|
#line 12946 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13215,23 +13211,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/frv/configure
vendored
25
sim/frv/configure
vendored
@ -612,7 +612,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -755,7 +754,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1406,8 +1404,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12867,7 +12863,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 12870 "configure"
|
#line 12866 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12973,7 +12969,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 12976 "configure"
|
#line 12972 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13241,23 +13237,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/ft32/configure
vendored
25
sim/ft32/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1401,8 +1399,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12861,7 +12857,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 12864 "configure"
|
#line 12860 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12967,7 +12963,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 12970 "configure"
|
#line 12966 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13235,23 +13231,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/h8300/configure
vendored
25
sim/h8300/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1396,8 +1394,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12846,7 +12842,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 12849 "configure"
|
#line 12845 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12952,7 +12948,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 12955 "configure"
|
#line 12951 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13220,23 +13216,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/iq2000/configure
vendored
25
sim/iq2000/configure
vendored
@ -611,7 +611,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -754,7 +753,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1405,8 +1403,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12867,7 +12863,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 12870 "configure"
|
#line 12866 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12973,7 +12969,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 12976 "configure"
|
#line 12972 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13241,23 +13237,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/lm32/configure
vendored
25
sim/lm32/configure
vendored
@ -611,7 +611,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -754,7 +753,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1404,8 +1402,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12864,7 +12860,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 12867 "configure"
|
#line 12863 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12970,7 +12966,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 12973 "configure"
|
#line 12969 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13238,23 +13234,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/m32c/configure
vendored
25
sim/m32c/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1397,8 +1395,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12847,7 +12843,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 12850 "configure"
|
#line 12846 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12953,7 +12949,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 12956 "configure"
|
#line 12952 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13221,23 +13217,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/m32r/configure
vendored
25
sim/m32r/configure
vendored
@ -613,7 +613,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -756,7 +755,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1407,8 +1405,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12869,7 +12865,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 12872 "configure"
|
#line 12868 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12975,7 +12971,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 12978 "configure"
|
#line 12974 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13243,23 +13239,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/m68hc11/configure
vendored
25
sim/m68hc11/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1401,8 +1399,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12860,7 +12856,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 12863 "configure"
|
#line 12859 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12966,7 +12962,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 12969 "configure"
|
#line 12965 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13234,23 +13230,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/mcore/configure
vendored
25
sim/mcore/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1401,8 +1399,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12861,7 +12857,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 12864 "configure"
|
#line 12860 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12967,7 +12963,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 12970 "configure"
|
#line 12966 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13235,23 +13231,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/microblaze/configure
vendored
25
sim/microblaze/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1401,8 +1399,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12861,7 +12857,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 12864 "configure"
|
#line 12860 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12967,7 +12963,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 12970 "configure"
|
#line 12966 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13235,23 +13231,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/mips/configure
vendored
25
sim/mips/configure
vendored
@ -621,7 +621,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -764,7 +763,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1424,8 +1422,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12893,7 +12889,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 12896 "configure"
|
#line 12892 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12999,7 +12995,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 13002 "configure"
|
#line 12998 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13267,23 +13263,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/mn10300/configure
vendored
25
sim/mn10300/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1403,8 +1401,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12866,7 +12862,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 12869 "configure"
|
#line 12865 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12972,7 +12968,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 12975 "configure"
|
#line 12971 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13240,23 +13236,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
* Makefile.in (SIM_CFLAGS): Rename to ...
|
||||||
|
(SIM_EXTRA_CFLAGS): ... this.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
@ -26,7 +26,7 @@ SIM_OBJS = \
|
|||||||
|
|
||||||
SIM_EXTRA_LIBS = -lm -lz
|
SIM_EXTRA_LIBS = -lm -lz
|
||||||
SIM_EXTRA_INSTALL = install-dtb
|
SIM_EXTRA_INSTALL = install-dtb
|
||||||
SIM_CFLAGS = -DDTB="\"$(dtbdir)/moxie-gdb.dtb\""
|
SIM_EXTRA_CFLAGS = -DDTB="\"$(dtbdir)/moxie-gdb.dtb\""
|
||||||
|
|
||||||
## COMMON_POST_CONFIG_FRAG
|
## COMMON_POST_CONFIG_FRAG
|
||||||
|
|
||||||
|
25
sim/moxie/configure
vendored
25
sim/moxie/configure
vendored
@ -609,7 +609,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -752,7 +751,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1402,8 +1400,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12862,7 +12858,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 12865 "configure"
|
#line 12861 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12968,7 +12964,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 12971 "configure"
|
#line 12967 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13236,23 +13232,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/msp430/configure
vendored
25
sim/msp430/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1400,8 +1398,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12857,7 +12853,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 12860 "configure"
|
#line 12856 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12963,7 +12959,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 12966 "configure"
|
#line 12962 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13231,23 +13227,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure.ac: Delete --enable-sim-cflags and sim_cflags.
|
||||||
|
* configure: Regenerate.
|
||||||
|
* INSTALL: Delete all mention of --enable-sim-cflags.
|
||||||
|
* Makefile.in (SIM_CFLAGS): Delete.
|
||||||
|
(STD_CFLAGS, NOWARN_CFLAGS): Delete $(SIM_CFLAGS).
|
||||||
|
(psim): Likewise.
|
||||||
|
|
||||||
2016-01-06 Mike Frysinger <vapier@gentoo.org>
|
2016-01-06 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* sim_calls.c (sim_open): Mark argv const.
|
* sim_calls.c (sim_open): Mark argv const.
|
||||||
|
@ -197,36 +197,6 @@ Each PSIM specific option is discussed in detail below.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
--enable-sim-cflags=<opts>
|
|
||||||
|
|
||||||
|
|
||||||
Specify additional C compiler flags that are to be used when compiling
|
|
||||||
just PSIM.
|
|
||||||
|
|
||||||
PSIM places heavy demands on both the host machine and its C compiler. So that
|
|
||||||
the builder has better control over the compiler the above option can be used
|
|
||||||
to pass additional options to the compiler while PSIM is being built.
|
|
||||||
|
|
||||||
Ex: No debug information
|
|
||||||
|
|
||||||
PSIM can be built with everything inline. Unfortunately, because of
|
|
||||||
all the debugging information generated the C compiler can grow very
|
|
||||||
very large as a result. For GCC, the debug information can be
|
|
||||||
restricted with the `-g0' option. To specify that this option should
|
|
||||||
be include in the CFLAGS when compiling the psim source code use:
|
|
||||||
|
|
||||||
--enable-sim-cflags=-g0
|
|
||||||
|
|
||||||
Ex: Additional optimization flags
|
|
||||||
|
|
||||||
A significant gain in performance can be achieved by tuning the
|
|
||||||
optimization flags passed to the C compiler. For instance on an x86
|
|
||||||
you may consider:
|
|
||||||
|
|
||||||
--enable-sim-cflags='-g0 -O2 -fno-strength-reduce -f...'
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--enable-sim-warnings=<flags>
|
--enable-sim-warnings=<flags>
|
||||||
|
|
||||||
|
|
||||||
@ -757,8 +727,7 @@ TYPICAL CONFIGURATION OPTIONS:
|
|||||||
--enable-sim-env=user \
|
--enable-sim-env=user \
|
||||||
--disable-sim-reserved-bits \
|
--disable-sim-reserved-bits \
|
||||||
--disable-sim-assert \
|
--disable-sim-assert \
|
||||||
--disable-sim-trace \
|
--disable-sim-trace
|
||||||
--enable-sim-cflags='-g0,-O2,-fno-strength-reduce,-fomit-frame-pointer'
|
|
||||||
|
|
||||||
|
|
||||||
OEA CODE ONLY:
|
OEA CODE ONLY:
|
||||||
@ -792,5 +761,4 @@ TYPICAL CONFIGURATION OPTIONS:
|
|||||||
--disable-sim-assert \
|
--disable-sim-assert \
|
||||||
--disable-sim-trace \
|
--disable-sim-trace \
|
||||||
--enable-sim-opcode=ppc-opcode-flat \
|
--enable-sim-opcode=ppc-opcode-flat \
|
||||||
--disable-sim-icache \
|
--disable-sim-icache
|
||||||
--enable-sim-cflags='-g0,-O3,-fno-strength-reduce,-fomit-frame-pointer'
|
|
||||||
|
@ -70,7 +70,6 @@ BISON = bison
|
|||||||
MAKEINFO = makeinfo
|
MAKEINFO = makeinfo
|
||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
|
|
||||||
SIM_CFLAGS = @sim_cflags@
|
|
||||||
INLINE_CFLAGS = @sim_inline@
|
INLINE_CFLAGS = @sim_inline@
|
||||||
ENDIAN_CFLAGS = @sim_endian@
|
ENDIAN_CFLAGS = @sim_endian@
|
||||||
REGPARM_CFLAGS = @sim_regparm@
|
REGPARM_CFLAGS = @sim_regparm@
|
||||||
@ -116,8 +115,8 @@ CONFIG_CFLAGS = \
|
|||||||
$(DEVZERO_CFLAGS)
|
$(DEVZERO_CFLAGS)
|
||||||
SIM_FPU_CFLAGS = @sim_fpu_cflags@
|
SIM_FPU_CFLAGS = @sim_fpu_cflags@
|
||||||
|
|
||||||
STD_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(WARNING_CFLAGS) $(SIM_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) $(INTL_CFLAGS) $(SIM_FPU_CFLAGS)
|
STD_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(WARNING_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) $(INTL_CFLAGS) $(SIM_FPU_CFLAGS)
|
||||||
NOWARN_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(SIM_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) $(SIM_FPU_CFLAGS)
|
NOWARN_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) $(SIM_FPU_CFLAGS)
|
||||||
BUILD_CFLAGS = $(CFLAGS_FOR_BUILD) $(INCLUDES) $(WARNING_CFLAGS)
|
BUILD_CFLAGS = $(CFLAGS_FOR_BUILD) $(INCLUDES) $(WARNING_CFLAGS)
|
||||||
|
|
||||||
BUILD_LDFLAGS =
|
BUILD_LDFLAGS =
|
||||||
@ -550,7 +549,7 @@ PACKAGE_OBJ = @sim_pk_obj@
|
|||||||
|
|
||||||
|
|
||||||
psim: $(TARGETLIB) main.o $(LIBIBERTY_LIB) $(BFD_LIB) $(LIBINTL_DEP)
|
psim: $(TARGETLIB) main.o $(LIBIBERTY_LIB) $(BFD_LIB) $(LIBINTL_DEP)
|
||||||
$(CC) $(CFLAGS) $(SIM_CFLAGS) $(LDFLAGS) -o psim$(EXEEXT) main.o $(TARGETLIB) $(BFD_LIB) $(ZLIB) $(LIBINTL) $(LIBIBERTY_LIB) $(LIBS)
|
$(CC) $(CFLAGS) $(LDFLAGS) -o psim$(EXEEXT) main.o $(TARGETLIB) $(BFD_LIB) $(ZLIB) $(LIBINTL) $(LIBIBERTY_LIB) $(LIBS)
|
||||||
|
|
||||||
run: psim
|
run: psim
|
||||||
rm -f run$(EXEEXT)
|
rm -f run$(EXEEXT)
|
||||||
|
19
sim/ppc/configure
vendored
19
sim/ppc/configure
vendored
@ -620,7 +620,6 @@ sim_opcode
|
|||||||
sim_config
|
sim_config
|
||||||
sim_line_nr
|
sim_line_nr
|
||||||
sim_warnings
|
sim_warnings
|
||||||
sim_cflags
|
|
||||||
RANLIB
|
RANLIB
|
||||||
AR
|
AR
|
||||||
HDEFINES
|
HDEFINES
|
||||||
@ -733,7 +732,6 @@ enable_option_checking
|
|||||||
enable_sim_alignment
|
enable_sim_alignment
|
||||||
enable_sim_assert
|
enable_sim_assert
|
||||||
enable_sim_bitsize
|
enable_sim_bitsize
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_config
|
enable_sim_config
|
||||||
enable_sim_decode_mechanism
|
enable_sim_decode_mechanism
|
||||||
enable_sim_default_model
|
enable_sim_default_model
|
||||||
@ -1399,7 +1397,6 @@ Optional Features:
|
|||||||
--enable-sim-alignment=align Specify strict or nonstrict alignment.
|
--enable-sim-alignment=align Specify strict or nonstrict alignment.
|
||||||
--enable-sim-assert Specify whether to perform random assertions.
|
--enable-sim-assert Specify whether to perform random assertions.
|
||||||
--enable-sim-bitsize=n Specify target bitsize (32 or 64).
|
--enable-sim-bitsize=n Specify target bitsize (32 or 64).
|
||||||
--enable-sim-cflags=opts Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-config=file Override default config file
|
--enable-sim-config=file Override default config file
|
||||||
--enable-sim-decode-mechanism=which Specify the instruction decode mechanism.
|
--enable-sim-decode-mechanism=which Specify the instruction decode mechanism.
|
||||||
--enable-sim-default-model=which Specify default PowerPC to model.
|
--enable-sim-default-model=which Specify default PowerPC to model.
|
||||||
@ -5231,21 +5228,6 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-config was given.
|
# Check whether --enable-sim-config was given.
|
||||||
if test "${enable_sim_config+set}" = set; then :
|
if test "${enable_sim_config+set}" = set; then :
|
||||||
enableval=$enable_sim_config; case "${enableval}" in
|
enableval=$enable_sim_config; case "${enableval}" in
|
||||||
@ -7918,7 +7900,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ac_config_files="$ac_config_files Makefile"
|
ac_config_files="$ac_config_files Makefile"
|
||||||
|
@ -56,18 +56,6 @@ if test x"$silent" != x"yes" && test x"$sim_bitsize" != x""; then
|
|||||||
fi],[sim_bitsize=""])dnl
|
fi],[sim_bitsize=""])dnl
|
||||||
|
|
||||||
|
|
||||||
AC_ARG_ENABLE(sim-cflags,
|
|
||||||
[ --enable-sim-cflags=opts Extra CFLAGS for use in building simulator],
|
|
||||||
[case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi],[sim_cflags=""])dnl
|
|
||||||
|
|
||||||
|
|
||||||
AC_ARG_ENABLE(sim-config,
|
AC_ARG_ENABLE(sim-config,
|
||||||
[ --enable-sim-config=file Override default config file],
|
[ --enable-sim-config=file Override default config file],
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
@ -874,7 +862,6 @@ AC_SUBST(HDEFINES)
|
|||||||
AR=${AR-ar}
|
AR=${AR-ar}
|
||||||
AC_SUBST(AR)
|
AC_SUBST(AR)
|
||||||
AC_PROG_RANLIB
|
AC_PROG_RANLIB
|
||||||
AC_SUBST(sim_cflags)
|
|
||||||
AC_SUBST(sim_warnings)
|
AC_SUBST(sim_warnings)
|
||||||
AC_SUBST(sim_line_nr)
|
AC_SUBST(sim_line_nr)
|
||||||
AC_SUBST(sim_config)
|
AC_SUBST(sim_config)
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/rl78/configure
vendored
25
sim/rl78/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1394,8 +1392,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12839,7 +12835,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 12842 "configure"
|
#line 12838 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12945,7 +12941,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 12948 "configure"
|
#line 12944 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13213,23 +13209,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/rx/configure
vendored
25
sim/rx/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1396,8 +1394,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12844,7 +12840,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 12847 "configure"
|
#line 12843 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12950,7 +12946,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 12953 "configure"
|
#line 12949 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13218,23 +13214,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/sh/configure
vendored
25
sim/sh/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1401,8 +1399,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12861,7 +12857,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 12864 "configure"
|
#line 12860 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12967,7 +12963,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 12970 "configure"
|
#line 12966 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13235,23 +13231,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/sh64/configure
vendored
25
sim/sh64/configure
vendored
@ -611,7 +611,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -754,7 +753,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1405,8 +1403,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12867,7 +12863,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 12870 "configure"
|
#line 12866 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12973,7 +12969,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 12976 "configure"
|
#line 12972 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13241,23 +13237,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-02 Mike Frysinger <vapier@gentoo.org>
|
2016-01-02 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* common/bits-gen.c (main): Change BIG_ENDIAN to BFD_ENDIAN_BIG and
|
* common/bits-gen.c (main): Change BIG_ENDIAN to BFD_ENDIAN_BIG and
|
||||||
|
5
sim/testsuite/configure
vendored
5
sim/testsuite/configure
vendored
@ -1823,7 +1823,6 @@ esac
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
sim_common=yes
|
|
||||||
sim_igen=no
|
sim_igen=no
|
||||||
sim_arch=
|
sim_arch=
|
||||||
case "${target}" in
|
case "${target}" in
|
||||||
@ -1914,10 +1913,6 @@ case "${target}" in
|
|||||||
sim_arch=v850
|
sim_arch=v850
|
||||||
sim_igen=yes
|
sim_igen=yes
|
||||||
;;
|
;;
|
||||||
*)
|
|
||||||
# No simulator subdir, so the subdir "common" isn't needed.
|
|
||||||
sim_common=no
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
2016-01-09 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* config.in, configure: Regenerate.
|
* config.in, configure: Regenerate.
|
||||||
|
25
sim/v850/configure
vendored
25
sim/v850/configure
vendored
@ -608,7 +608,6 @@ sim_profile
|
|||||||
sim_trace
|
sim_trace
|
||||||
sim_stdio
|
sim_stdio
|
||||||
sim_debug
|
sim_debug
|
||||||
sim_cflags
|
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -751,7 +750,6 @@ enable_fast_install
|
|||||||
with_gnu_ld
|
with_gnu_ld
|
||||||
enable_libtool_lock
|
enable_libtool_lock
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_sim_cflags
|
|
||||||
enable_sim_debug
|
enable_sim_debug
|
||||||
enable_sim_stdio
|
enable_sim_stdio
|
||||||
enable_sim_trace
|
enable_sim_trace
|
||||||
@ -1401,8 +1399,6 @@ Optional Features:
|
|||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
--enable-sim-cflags=opts
|
|
||||||
Extra CFLAGS for use in building simulator
|
|
||||||
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
--enable-sim-debug=opts Enable debugging flags (for developers of the sim
|
||||||
itself)
|
itself)
|
||||||
--enable-sim-stdio Specify whether to use stdio for console
|
--enable-sim-stdio Specify whether to use stdio for console
|
||||||
@ -12860,7 +12856,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 12863 "configure"
|
#line 12859 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -12966,7 +12962,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 12969 "configure"
|
#line 12965 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -13234,23 +13230,6 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-cflags was given.
|
|
||||||
if test "${enable_sim_cflags+set}" = set; then :
|
|
||||||
enableval=$enable_sim_cflags; case "${enableval}" in
|
|
||||||
yes) sim_cflags="-O2 -fomit-frame-pointer";;
|
|
||||||
trace) as_fn_error "\"Please use --enable-sim-debug instead.\"" "$LINENO" 5; sim_cflags="";;
|
|
||||||
no) sim_cflags="";;
|
|
||||||
*) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;;
|
|
||||||
esac
|
|
||||||
if test x"$silent" != x"yes" && test x"$sim_cflags" != x""; then
|
|
||||||
echo "Setting sim cflags = $sim_cflags" 6>&1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
sim_cflags=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-sim-debug was given.
|
# Check whether --enable-sim-debug was given.
|
||||||
if test "${enable_sim_debug+set}" = set; then :
|
if test "${enable_sim_debug+set}" = set; then :
|
||||||
enableval=$enable_sim_debug; case "${enableval}" in
|
enableval=$enable_sim_debug; case "${enableval}" in
|
||||||
|
Loading…
Reference in New Issue
Block a user