sim: move many common settings from CPPFLAGS to config.h
Rather than stuffing the command line with a bunch of -D flags, start moving things to config.h which is managed by autoheader. This makes the makefile a bit simpler and the build output tighter, and it makes the migration to automake easier as there are fewer vars to juggle. We'll want to move the other options out too, but it'll take more work.
This commit is contained in:
parent
e19418e02e
commit
ce39bd3890
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -170,6 +173,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -201,6 +207,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/aarch64/configure
vendored
164
sim/aarch64/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4027,10 +4019,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12843,7 +12831,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12846 "configure"
|
||||
#line 12834 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12949,7 +12937,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12952 "configure"
|
||||
#line 12940 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13217,124 +13205,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -170,6 +173,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -201,6 +207,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/arm/configure
vendored
164
sim/arm/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4027,10 +4019,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12843,7 +12831,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12846 "configure"
|
||||
#line 12834 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12949,7 +12937,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12952 "configure"
|
||||
#line 12940 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13217,124 +13205,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -170,6 +173,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -201,6 +207,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/avr/configure
vendored
164
sim/avr/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4027,10 +4019,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12843,7 +12831,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12846 "configure"
|
||||
#line 12834 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12949,7 +12937,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12952 "configure"
|
||||
#line 12940 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13217,124 +13205,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -215,6 +218,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -246,6 +252,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/bfin/configure
vendored
164
sim/bfin/configure
vendored
@ -609,10 +609,6 @@ PKG_CONFIG
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -687,8 +683,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -699,9 +693,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4050,10 +4042,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12866,7 +12854,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12869 "configure"
|
||||
#line 12857 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12972,7 +12960,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12975 "configure"
|
||||
#line 12963 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13240,124 +13228,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,25 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* acinclude.m4 (SIM_AC_COMMON): Call AC_MSG_CHECKING,
|
||||
AC_DEFINE_UNQUOTED, and AC_MSG_RESULT for sim-debug. Likewise for
|
||||
sim-stdio, sim-trace, and sim-profile.
|
||||
(SIM_AC_OPTION_ENVIRONMENT): Likewise.
|
||||
(SIM_AC_OPTION_ASSERT): Likewise.
|
||||
(SIM_AC_OPTION_SMP): Likewise.
|
||||
(SIM_AC_OPTION_XOR_ENDIAN): Likewise.
|
||||
* configure: Regenerate.
|
||||
* Make-common.in (SIM_DEBUG, SIM_TRACE, SIM_PROFILE, SIM_ASSERT,
|
||||
SIM_ENVIRONMENT, SIM_SMP, SIM_XOR_ENDIAN): Delete.
|
||||
(CONFIG_CFLAGS): Delete $(SIM_DEBUG), $(SIM_TRACE), $(SIM_PROFILE),
|
||||
$(SIM_ASSERT), $(SIM_ENVIRONMENT), $(SIM_SMP), and $(SIM_XOR_ENDIAN).
|
||||
* sim-config.c (sim_config): Change DEFAULT_ENVIRONMENT to
|
||||
WITH_ENVIRONMENT & USER_ENVIRONMENT.
|
||||
* sim-config.h (SIM_HAVE_ENVIRONMENT, WITH_ENVIRONMENT,
|
||||
DEFAULT_ENVIRONMENT, WITH_DEBUG, WITH_TRACE, WITH_PROFILE,
|
||||
WITH_ASSERT, WITH_STDIO): Delete.
|
||||
* sim-options.c (standard_options): Delete SIM_HAVE_ENVIRONMENT
|
||||
check.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* acinclude.m4 (SIM_AC_OPTION_PACKAGES): Delete.
|
||||
|
@ -75,16 +75,11 @@ CFLAGS = @CFLAGS@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
SIM_DEBUG = @sim_debug@
|
||||
SIM_TRACE = @sim_trace@
|
||||
SIM_PROFILE = @sim_profile@
|
||||
|
||||
SIM_ASSERT = @sim_assert@
|
||||
SIM_ALIGNMENT = @sim_alignment@
|
||||
SIM_BITSIZE = @sim_bitsize@
|
||||
SIM_DEFAULT_MODEL = @sim_default_model@
|
||||
SIM_ENDIAN = @sim_endian@
|
||||
SIM_ENVIRONMENT = @sim_environment@
|
||||
SIM_FLOAT = @sim_float@
|
||||
SIM_HW_CFLAGS = @sim_hw_cflags@
|
||||
SIM_HW_OBJS = @sim_hw_objs@
|
||||
@ -92,8 +87,6 @@ SIM_HW = @sim_hw@
|
||||
SIM_INLINE = @sim_inline@
|
||||
SIM_RESERVED_BITS = @sim_reserved_bits@
|
||||
SIM_SCACHE = @sim_scache@
|
||||
SIM_SMP = @sim_smp@
|
||||
SIM_XOR_ENDIAN = @sim_xor_endian@
|
||||
WARN_CFLAGS = @WARN_CFLAGS@
|
||||
WERROR_CFLAGS = @WERROR_CFLAGS@
|
||||
SIM_WARN_CFLAGS = $(WARN_CFLAGS)
|
||||
@ -224,24 +217,17 @@ CGEN_INCLUDE_DEPS = \
|
||||
|
||||
CONFIG_CFLAGS = \
|
||||
@DEFS@ \
|
||||
$(SIM_DEBUG) \
|
||||
$(SIM_DEFAULT_MODEL) \
|
||||
$(SIM_TRACE) \
|
||||
$(SIM_PROFILE) \
|
||||
$(SIM_ASSERT) \
|
||||
$(SIM_ALIGNMENT) \
|
||||
$(SIM_BITSIZE) \
|
||||
$(SIM_ENDIAN) \
|
||||
$(SIM_ENVIRONMENT) \
|
||||
$(SIM_FLOAT) \
|
||||
$(SIM_HW_CFLAGS) \
|
||||
$(SIM_INLINE) \
|
||||
$(SIM_RESERVED_BITS) \
|
||||
$(SIM_SCACHE) \
|
||||
$(SIM_SMP) \
|
||||
$(SIM_WARN_CFLAGS) \
|
||||
$(SIM_WERROR_CFLAGS) \
|
||||
$(SIM_XOR_ENDIAN) \
|
||||
$(SIM_HARDWARE) \
|
||||
$(SIM_EXTRA_CFLAGS) \
|
||||
$(HDEFINES) $(TDEFINES)
|
||||
|
@ -135,64 +135,67 @@ AM_MAINTAINER_MODE
|
||||
|
||||
dnl --enable-sim-debug is for developers of the simulator
|
||||
dnl the allowable values are work-in-progress
|
||||
AC_MSG_CHECKING([for sim debug setting])
|
||||
sim_debug="0"
|
||||
AC_ARG_ENABLE(sim-debug,
|
||||
[AS_HELP_STRING([--enable-sim-debug=opts],
|
||||
[Enable debugging flags (for developers of the sim itself)])],
|
||||
[case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi],[sim_debug=""])dnl
|
||||
AC_SUBST(sim_debug)
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac])dnl
|
||||
if test "$sim_debug" != "0"; then
|
||||
AC_DEFINE_UNQUOTED([DEBUG], [$sim_debug], [Sim debug setting])
|
||||
fi
|
||||
AC_DEFINE_UNQUOTED([WITH_DEBUG], [$sim_debug], [Sim debug setting])
|
||||
AC_MSG_RESULT($sim_debug)
|
||||
|
||||
|
||||
dnl --enable-sim-stdio is for users of the simulator
|
||||
dnl It determines if IO from the program is routed through STDIO (buffered)
|
||||
AC_MSG_CHECKING([for sim stdio debug behavior])
|
||||
sim_stdio="0"
|
||||
AC_ARG_ENABLE(sim-stdio,
|
||||
[AS_HELP_STRING([--enable-sim-stdio],
|
||||
[Specify whether to use stdio for console input/output])],
|
||||
[case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-stdio"); sim_stdio="";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi],[sim_stdio=""])dnl
|
||||
AC_SUBST(sim_stdio)
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) AC_MSG_ERROR([Unknown value $enableval passed to --enable-sim-stdio]);;
|
||||
esac])dnl
|
||||
AC_DEFINE_UNQUOTED([WITH_STDIO], [$sim_stdio], [How to route I/O])
|
||||
AC_MSG_RESULT($sim_stdio)
|
||||
|
||||
|
||||
dnl --enable-sim-trace is for users of the simulator
|
||||
dnl The argument is either a bitmask of things to enable [exactly what is
|
||||
dnl up to the simulator], or is a comma separated list of names of tracing
|
||||
dnl elements to enable. The latter is only supported on simulators that
|
||||
dnl use WITH_TRACE.
|
||||
dnl use WITH_TRACE. Default to all tracing but internal debug.
|
||||
AC_MSG_CHECKING([for sim trace settings])
|
||||
sim_trace="~TRACE_debug"
|
||||
AC_ARG_ENABLE(sim-trace,
|
||||
[AS_HELP_STRING([--enable-sim-trace=opts],
|
||||
[Enable tracing of simulated programs])],
|
||||
[case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[[-0-9]]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[[:lower:]]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi],[sim_trace=""])dnl
|
||||
AC_SUBST(sim_trace)
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac])dnl
|
||||
AC_DEFINE_UNQUOTED([WITH_TRACE], [$sim_trace], [Sim trace settings])
|
||||
AC_MSG_RESULT($sim_trace)
|
||||
|
||||
|
||||
dnl --enable-sim-profile
|
||||
@ -200,28 +203,32 @@ dnl The argument is either a bitmask of things to enable [exactly what is
|
||||
dnl up to the simulator], or is a comma separated list of names of profiling
|
||||
dnl elements to enable. The latter is only supported on simulators that
|
||||
dnl use WITH_PROFILE.
|
||||
AC_MSG_CHECKING([for sim profile settings])
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
AC_ARG_ENABLE(sim-profile,
|
||||
[AS_HELP_STRING([--enable-sim-profile=opts], [Enable profiling flags])],
|
||||
[case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[[-0-9]]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[[a-z]]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi],[sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"])dnl
|
||||
AC_SUBST(sim_profile)
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac])dnl
|
||||
AC_DEFINE_UNQUOTED([PROFILE], [$profile], [Sim profile settings])
|
||||
AC_DEFINE_UNQUOTED([WITH_PROFILE], [$sim_profile], [Sim profile settings])
|
||||
AC_MSG_RESULT($sim_profile)
|
||||
|
||||
|
||||
SIM_AC_OPTION_ASSERT
|
||||
SIM_AC_OPTION_ENVIRONMENT
|
||||
@ -257,23 +264,21 @@ dnl ??? Until there is demonstrable value in doing something more complicated,
|
||||
dnl let's not.
|
||||
AC_DEFUN([SIM_AC_OPTION_ENVIRONMENT],
|
||||
[
|
||||
AC_MSG_CHECKING([default sim environment setting])
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
AC_ARG_ENABLE(sim-environment,
|
||||
[AS_HELP_STRING([--enable-sim-environment=environment],
|
||||
[Specify mixed, user, virtual or operating environment])],
|
||||
[case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-environment");
|
||||
sim_environment="";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi],
|
||||
[sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"])dnl
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) AC_MSG_ERROR([Unknown value $enableval passed to --enable-sim-environment]);;
|
||||
esac])dnl
|
||||
AC_DEFINE_UNQUOTED([WITH_ENVIRONMENT], [$sim_environment], [Sim default environment])
|
||||
AC_MSG_RESULT($sim_environment)
|
||||
])
|
||||
AC_SUBST(sim_environment)
|
||||
|
||||
|
||||
dnl Specify the alignment restrictions of the target architecture.
|
||||
@ -332,19 +337,19 @@ AC_SUBST(sim_alignment)
|
||||
dnl Conditionally compile in assertion statements.
|
||||
AC_DEFUN([SIM_AC_OPTION_ASSERT],
|
||||
[
|
||||
AC_MSG_CHECKING([whether to enable sim asserts])
|
||||
sim_assert="1"
|
||||
AC_ARG_ENABLE(sim-assert,
|
||||
[AS_HELP_STRING([--enable-sim-assert],
|
||||
[Specify whether to perform random assertions])],
|
||||
[case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) AC_MSG_ERROR("--enable-sim-assert does not take a value"); sim_assert="";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi],[sim_assert=""])dnl
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) AC_MSG_ERROR([--enable-sim-assert does not take a value]);;
|
||||
esac])dnl
|
||||
AC_DEFINE_UNQUOTED([WITH_ASSERT], [$sim_assert], [Sim assert settings])
|
||||
AC_MSG_RESULT($sim_assert)
|
||||
])
|
||||
AC_SUBST(sim_assert)
|
||||
|
||||
|
||||
|
||||
@ -667,41 +672,39 @@ AC_SUBST(sim_reserved_bits)
|
||||
|
||||
AC_DEFUN([SIM_AC_OPTION_SMP],
|
||||
[
|
||||
AC_MSG_CHECKING([number of sim cpus to support])
|
||||
default_sim_smp="ifelse([$1],,5,[$1])"
|
||||
sim_smp="$default_sim_smp""
|
||||
AC_ARG_ENABLE(sim-smp,
|
||||
[AS_HELP_STRING([--enable-sim-smp=n],
|
||||
[Specify number of processors to configure for (default ${default_sim_smp})])],
|
||||
[case "${enableval}" in
|
||||
yes) sim_smp="-DWITH_SMP=5" ; sim_igen_smp="-N 5";;
|
||||
no) sim_smp="-DWITH_SMP=0" ; sim_igen_smp="-N 0";;
|
||||
*) sim_smp="-DWITH_SMP=$enableval" ; sim_igen_smp="-N $enableval";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_smp" != x""; then
|
||||
echo "Setting smp flags = $sim_smp" 6>&1
|
||||
fi],[sim_smp="-DWITH_SMP=${default_sim_smp}" ; sim_igen_smp="-N ${default_sim_smp}"
|
||||
if test x"$silent" != x"yes"; then
|
||||
echo "Setting smp flags = $sim_smp" 6>&1
|
||||
fi])dnl
|
||||
yes) sim_smp="5";;
|
||||
no) sim_smp="0";;
|
||||
*) sim_smp="$enableval";;
|
||||
esac])dnl
|
||||
sim_igen_smp="-N ${sim_smp}"
|
||||
AC_DEFINE_UNQUOTED([WITH_SMP], [$sim_smp], [Sim SMP settings])
|
||||
AC_MSG_RESULT($sim_smp)
|
||||
])
|
||||
AC_SUBST(sim_smp)
|
||||
|
||||
|
||||
AC_DEFUN([SIM_AC_OPTION_XOR_ENDIAN],
|
||||
[
|
||||
AC_MSG_CHECKING([for xor endian support])
|
||||
default_sim_xor_endian="ifelse([$1],,8,[$1])"
|
||||
sim_xor_endian="$default_sim_xor_endian"
|
||||
AC_ARG_ENABLE(sim-xor-endian,
|
||||
[AS_HELP_STRING([--enable-sim-xor-endian=n],
|
||||
[Specify number bytes involved in XOR bi-endian mode (default ${default_sim_xor_endian})])],
|
||||
[case "${enableval}" in
|
||||
yes) sim_xor_endian="-DWITH_XOR_ENDIAN=8";;
|
||||
no) sim_xor_endian="-DWITH_XOR_ENDIAN=0";;
|
||||
*) sim_xor_endian="-DWITH_XOR_ENDIAN=$enableval";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_xor_endian" != x""; then
|
||||
echo "Setting xor-endian flag = $sim_xor_endian" 6>&1
|
||||
fi],[sim_xor_endian="-DWITH_XOR_ENDIAN=${default_sim_xor_endian}"])dnl
|
||||
yes) sim_xor_endian="8";;
|
||||
no) sim_xor_endian="0";;
|
||||
*) sim_xor_endian="$enableval";;
|
||||
esac])dnl
|
||||
AC_DEFINE_UNQUOTED([WITH_XOR_ENDIAN], [$sim_xor_endian], [Sim XOR endian settings])
|
||||
AC_MSG_RESULT($sim_smp)
|
||||
])
|
||||
AC_SUBST(sim_xor_endian)
|
||||
|
||||
|
||||
dnl --enable-build-warnings is for developers of the simulator.
|
||||
|
6
sim/common/configure
vendored
6
sim/common/configure
vendored
@ -602,8 +602,6 @@ PATH_SEPARATOR
|
||||
SHELL
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -614,9 +612,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment'
|
||||
sim_alignment'
|
||||
ac_subst_files=''
|
||||
ac_user_opts='
|
||||
enable_option_checking
|
||||
|
@ -237,7 +237,8 @@ sim_config (SIM_DESC sd)
|
||||
}
|
||||
#endif
|
||||
if (STATE_ENVIRONMENT (sd) == ALL_ENVIRONMENT)
|
||||
STATE_ENVIRONMENT (sd) = DEFAULT_ENVIRONMENT;
|
||||
STATE_ENVIRONMENT (sd) = (WITH_ENVIRONMENT != ALL_ENVIRONMENT ?
|
||||
WITH_ENVIRONMENT : USER_ENVIRONMENT);
|
||||
|
||||
|
||||
/* set the alignment */
|
||||
|
@ -167,21 +167,6 @@ enum sim_environment {
|
||||
OPERATING_ENVIRONMENT
|
||||
};
|
||||
|
||||
/* If the simulator specified SIM_AC_OPTION_ENVIRONMENT, indicate so. */
|
||||
#ifdef WITH_ENVIRONMENT
|
||||
#define SIM_HAVE_ENVIRONMENT
|
||||
#endif
|
||||
|
||||
/* If the simulator doesn't specify SIM_AC_OPTION_ENVIRONMENT in its
|
||||
configure.ac, the only supported environment is the user environment. */
|
||||
#ifndef WITH_ENVIRONMENT
|
||||
#define WITH_ENVIRONMENT USER_ENVIRONMENT
|
||||
#endif
|
||||
|
||||
#define DEFAULT_ENVIRONMENT (WITH_ENVIRONMENT != ALL_ENVIRONMENT \
|
||||
? WITH_ENVIRONMENT \
|
||||
: USER_ENVIRONMENT)
|
||||
|
||||
/* To be prepended to simulator calls with absolute file paths and
|
||||
chdir:ed at startup. */
|
||||
extern char *simulator_sysroot;
|
||||
@ -267,39 +252,6 @@ extern int current_floating_point;
|
||||
#endif
|
||||
|
||||
|
||||
/* Debugging:
|
||||
|
||||
Control the inclusion of debugging code.
|
||||
Debugging is only turned on in rare circumstances [say during development]
|
||||
and is not intended to be turned on otherwise. */
|
||||
|
||||
#ifndef WITH_DEBUG
|
||||
#define WITH_DEBUG 0
|
||||
#endif
|
||||
|
||||
/* Include the tracing code. Disabling this eliminates all tracing
|
||||
code. Default to all tracing but internal debug. */
|
||||
|
||||
#ifndef WITH_TRACE
|
||||
#define WITH_TRACE (~TRACE_debug)
|
||||
#endif
|
||||
|
||||
/* Include the profiling code. Disabling this eliminates all profiling
|
||||
code. */
|
||||
|
||||
#ifndef WITH_PROFILE
|
||||
#define WITH_PROFILE (-1)
|
||||
#endif
|
||||
|
||||
|
||||
/* include code that checks assertions scattered through out the
|
||||
program */
|
||||
|
||||
#ifndef WITH_ASSERT
|
||||
#define WITH_ASSERT 1
|
||||
#endif
|
||||
|
||||
|
||||
/* Whether to check instructions for reserved bits being set */
|
||||
|
||||
/* #define WITH_RESERVED_BITS 1 */
|
||||
@ -344,10 +296,6 @@ extern int current_model_issue;
|
||||
#define DONT_USE_STDIO 2
|
||||
#define DO_USE_STDIO 1
|
||||
|
||||
#ifndef WITH_STDIO
|
||||
#define WITH_STDIO 0
|
||||
#endif
|
||||
|
||||
extern int current_stdio;
|
||||
#define CURRENT_STDIO (WITH_STDIO \
|
||||
? WITH_STDIO \
|
||||
|
@ -119,14 +119,12 @@ static const OPTION standard_options[] =
|
||||
'E', "big|little", "Set endianness",
|
||||
standard_option_handler, NULL },
|
||||
|
||||
#ifdef SIM_HAVE_ENVIRONMENT
|
||||
/* This option isn't supported unless all choices are supported in keeping
|
||||
with the goal of not printing in --help output things the simulator can't
|
||||
do [as opposed to things that just haven't been configured in]. */
|
||||
{ {"environment", required_argument, NULL, OPTION_ENVIRONMENT},
|
||||
'\0', "user|virtual|operating", "Set running environment",
|
||||
standard_option_handler },
|
||||
#endif
|
||||
|
||||
{ {"alignment", required_argument, NULL, OPTION_ALIGNMENT},
|
||||
'\0', "strict|nonstrict|forced", "Set memory access alignment",
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -170,6 +173,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -201,6 +207,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/cr16/configure
vendored
164
sim/cr16/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4027,10 +4019,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12843,7 +12831,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12846 "configure"
|
||||
#line 12834 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12949,7 +12937,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12952 "configure"
|
||||
#line 12940 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13217,124 +13205,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -188,6 +191,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -219,6 +225,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/cris/configure
vendored
164
sim/cris/configure
vendored
@ -607,10 +607,6 @@ CGEN_MAINT
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -685,8 +681,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -697,9 +691,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4041,10 +4033,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12857,7 +12845,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12860 "configure"
|
||||
#line 12848 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12963,7 +12951,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12966 "configure"
|
||||
#line 12954 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13231,124 +13219,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -170,6 +173,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -201,6 +207,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/d10v/configure
vendored
164
sim/d10v/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4027,10 +4019,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12843,7 +12831,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12846 "configure"
|
||||
#line 12834 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12949,7 +12937,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12952 "configure"
|
||||
#line 12940 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13217,124 +13205,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -170,6 +173,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -201,6 +207,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/erc32/configure
vendored
164
sim/erc32/configure
vendored
@ -606,10 +606,6 @@ TERMCAP
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -684,8 +680,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -696,9 +690,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4014,10 +4006,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12830,7 +12818,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12833 "configure"
|
||||
#line 12821 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12936,7 +12924,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12939 "configure"
|
||||
#line 12927 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13204,124 +13192,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -176,6 +179,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -207,6 +213,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/frv/configure
vendored
164
sim/frv/configure
vendored
@ -608,10 +608,6 @@ CGEN_MAINT
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -686,8 +682,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -698,9 +692,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4036,10 +4028,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12852,7 +12840,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12855 "configure"
|
||||
#line 12843 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12958,7 +12946,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12961 "configure"
|
||||
#line 12949 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13226,124 +13214,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -170,6 +173,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -201,6 +207,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/ft32/configure
vendored
164
sim/ft32/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4027,10 +4019,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12843,7 +12831,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12846 "configure"
|
||||
#line 12834 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12949,7 +12937,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12952 "configure"
|
||||
#line 12940 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13217,124 +13205,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -173,6 +176,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -204,6 +210,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/h8300/configure
vendored
164
sim/h8300/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4019,10 +4011,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12835,7 +12823,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12838 "configure"
|
||||
#line 12826 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12941,7 +12929,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12944 "configure"
|
||||
#line 12932 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13209,124 +13197,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -10,6 +10,10 @@
|
||||
|
||||
* configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
||||
2016-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
8
sim/igen/configure
vendored
8
sim/igen/configure
vendored
@ -625,8 +625,6 @@ INSTALL_SCRIPT
|
||||
INSTALL_PROGRAM
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -637,9 +635,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -3736,10 +3732,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -176,6 +179,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -207,6 +213,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/iq2000/configure
vendored
164
sim/iq2000/configure
vendored
@ -607,10 +607,6 @@ CGEN_MAINT
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -685,8 +681,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -697,9 +691,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4033,10 +4025,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12849,7 +12837,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12852 "configure"
|
||||
#line 12840 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12955,7 +12943,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12958 "configure"
|
||||
#line 12946 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13223,124 +13211,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -176,6 +179,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -207,6 +213,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/lm32/configure
vendored
164
sim/lm32/configure
vendored
@ -607,10 +607,6 @@ CGEN_MAINT
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -685,8 +681,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -697,9 +691,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4033,10 +4025,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12849,7 +12837,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12852 "configure"
|
||||
#line 12840 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12955,7 +12943,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12958 "configure"
|
||||
#line 12946 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13223,124 +13211,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -185,6 +188,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -216,6 +222,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/m32c/configure
vendored
164
sim/m32c/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4020,10 +4012,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12836,7 +12824,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12839 "configure"
|
||||
#line 12827 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12942,7 +12930,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12945 "configure"
|
||||
#line 12933 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13210,124 +13198,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -176,6 +179,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -207,6 +213,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/m32r/configure
vendored
164
sim/m32r/configure
vendored
@ -609,10 +609,6 @@ CGEN_MAINT
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -687,8 +683,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -699,9 +693,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4035,10 +4027,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12851,7 +12839,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12854 "configure"
|
||||
#line 12842 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12957,7 +12945,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12960 "configure"
|
||||
#line 12948 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13225,124 +13213,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -176,6 +179,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -207,6 +213,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/m68hc11/configure
vendored
164
sim/m68hc11/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4030,10 +4022,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12846,7 +12834,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12849 "configure"
|
||||
#line 12837 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12952,7 +12940,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12955 "configure"
|
||||
#line 12943 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13220,124 +13208,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -170,6 +173,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -201,6 +207,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/mcore/configure
vendored
164
sim/mcore/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4027,10 +4019,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12843,7 +12831,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12846 "configure"
|
||||
#line 12834 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12949,7 +12937,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12952 "configure"
|
||||
#line 12940 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13217,124 +13205,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -170,6 +173,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -201,6 +207,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/microblaze/configure
vendored
164
sim/microblaze/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4027,10 +4019,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12843,7 +12831,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12846 "configure"
|
||||
#line 12834 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12949,7 +12937,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12952 "configure"
|
||||
#line 12940 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13217,124 +13205,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -185,6 +188,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -216,6 +222,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/mips/configure
vendored
164
sim/mips/configure
vendored
@ -617,10 +617,6 @@ SIM_SUBTARGET
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -695,8 +691,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -707,9 +701,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4060,10 +4052,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12876,7 +12864,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12879 "configure"
|
||||
#line 12867 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12982,7 +12970,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12985 "configure"
|
||||
#line 12973 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13250,124 +13238,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -197,6 +200,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -228,6 +234,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/mn10300/configure
vendored
164
sim/mn10300/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4036,10 +4028,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12852,7 +12840,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12855 "configure"
|
||||
#line 12843 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12958,7 +12946,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12961 "configure"
|
||||
#line 12949 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13226,124 +13214,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -170,6 +173,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -201,6 +207,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/moxie/configure
vendored
164
sim/moxie/configure
vendored
@ -605,10 +605,6 @@ DTC
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -683,8 +679,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -695,9 +689,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4028,10 +4020,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12844,7 +12832,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12847 "configure"
|
||||
#line 12835 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12950,7 +12938,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12953 "configure"
|
||||
#line 12941 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13218,124 +13206,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -173,6 +176,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -204,6 +210,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/msp430/configure
vendored
164
sim/msp430/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4027,10 +4019,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12843,7 +12831,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12846 "configure"
|
||||
#line 12834 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12949,7 +12937,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12952 "configure"
|
||||
#line 12940 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13217,124 +13205,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,16 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure.ac (sim-assert): Call AC_MSG_CHECKING,
|
||||
AC_DEFINE_UNQUOTED, and AC_MSG_RESULT
|
||||
(sim-env, sim-stdio, sim-trace): Delete.
|
||||
* config.in, configure: Regenerate.
|
||||
* Make-common.in (ENV_CFLAGS, TRACE_CFLAGS, ASSERT_CFLAGS,
|
||||
STDIO_CFLAGS): Delete.
|
||||
(CONFIG_CFLAGS): Delete $(ENV_CFLAGS), $(TRACE_CFLAGS),
|
||||
$(ASSERT_CFLAGS), and $(STDIO_CFLAGS).
|
||||
* std-config.h (WITH_ENVIRONMENT, WITH_TRACE, WITH_ASSERT,
|
||||
WITH_STDIO): Delete.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -77,16 +77,12 @@ SMP_CFLAGS = @sim_smp@
|
||||
XOR_ENDIAN_CFLAGS = @sim_xor_endian@
|
||||
BITSIZE_CFLAGS = @sim_bitsize@
|
||||
HOSTBITSIZE_CFLAGS = @sim_hostbitsize@
|
||||
ENV_CFLAGS = @sim_env@
|
||||
TIMEBASE_CFLAGS = @sim_timebase@
|
||||
ALIGNMENT_CFLAGS = @sim_alignment@
|
||||
FLOAT_CFLAGS = @sim_float@
|
||||
TRACE_CFLAGS = @sim_trace@
|
||||
ASSERT_CFLAGS = @sim_assert@
|
||||
RESERVED_CFLAGS = @sim_reserved@
|
||||
MONITOR_CFLAGS = @sim_monitor@
|
||||
MODEL_CFLAGS = @sim_model@ @sim_default_model@ @sim_model_issue@
|
||||
STDIO_CFLAGS = @sim_stdio@
|
||||
TERMIO_CFLAGS = @sim_termio@
|
||||
WARNING_CFLAGS = @sim_warnings@
|
||||
DEVZERO_CFLAGS = @sim_devzero@
|
||||
@ -97,16 +93,12 @@ CONFIG_CFLAGS = \
|
||||
$(XOR_ENDIAN_CFLAGS) \
|
||||
$(BITSIZE_CFLAGS) \
|
||||
$(HOSTBITSIZE_CFLAGS) \
|
||||
$(ENV_CFLAGS) \
|
||||
$(TIMEBASE_CFLAGS) \
|
||||
$(ALIGNMENT_CFLAGS) \
|
||||
$(FLOAT_CFLAGS) \
|
||||
$(TRACE_CFLAGS) \
|
||||
$(ASSERT_CFLAGS) \
|
||||
$(RESERVED_CFLAGS) \
|
||||
$(MONITOR_CFLAGS) \
|
||||
$(MODEL_CFLAGS) \
|
||||
$(STDIO_CFLAGS) \
|
||||
$(TERMIO_CFLAGS) \
|
||||
$(DEVZERO_CFLAGS)
|
||||
SIM_FPU_CFLAGS = @sim_fpu_cflags@
|
||||
|
@ -325,6 +325,18 @@
|
||||
when building for Cygwin. */
|
||||
#undef USE_WIN32API
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
105
sim/ppc/configure
vendored
105
sim/ppc/configure
vendored
@ -595,17 +595,16 @@ sim_targ_vals
|
||||
sim_callback
|
||||
sim_devzero
|
||||
sim_termio
|
||||
sim_stdio
|
||||
sim_model_issue
|
||||
sim_model
|
||||
sim_monitor
|
||||
sim_reserved
|
||||
sim_trace
|
||||
sim_timebase
|
||||
sim_env
|
||||
sim_hostbitsize
|
||||
sim_igen_smp
|
||||
sim_smp
|
||||
sim_hostendian
|
||||
sim_xor_endian
|
||||
sim_pk_obj
|
||||
sim_pk_src
|
||||
sim_hw_obj
|
||||
@ -670,8 +669,6 @@ INSTALL_SCRIPT
|
||||
INSTALL_PROGRAM
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -682,9 +679,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4070,10 +4065,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -5179,20 +5170,25 @@ else
|
||||
fi
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
# Check whether --enable-sim-bitsize was given.
|
||||
if test "${enable_sim_bitsize+set}" = set; then :
|
||||
@ -5304,22 +5300,27 @@ else
|
||||
fi
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_env="0"
|
||||
# Check whether --enable-sim-env was given.
|
||||
if test "${enable_sim_env+set}" = set; then :
|
||||
enableval=$enable_sim_env; case "${enableval}" in
|
||||
operating | os | oea) sim_env="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
virtual | vea) sim_env="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
user | uea) sim_env="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
no) sim_env="-DWITH_ENVIRONMENT=0";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-env\"" "$LINENO" 5; sim_env="";;
|
||||
operating | os | oea) sim_env="OPERATING_ENVIRONMENT";;
|
||||
virtual | vea) sim_env="VIRTUAL_ENVIRONMENT";;
|
||||
user | uea) sim_env="USER_ENVIRONMENT";;
|
||||
no) sim_env="0";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-env" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_env" != x""; then
|
||||
echo "Setting env flags = $sim_env" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_env=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_env
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_env" >&5
|
||||
$as_echo "$sim_env" >&6; }
|
||||
|
||||
|
||||
# Check whether --enable-sim-filter was given.
|
||||
if test "${enable_sim_filter+set}" = set; then :
|
||||
@ -6452,20 +6453,25 @@ fi
|
||||
fi
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio=0
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
# Check whether --enable-sim-switch was given.
|
||||
if test "${enable_sim_switch+set}" = set; then :
|
||||
@ -6500,20 +6506,25 @@ else
|
||||
fi
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="1"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
*) as_fn_error "\"--enable-sim-trace does not take a value\"" "$LINENO" 5; sim_trace="";;
|
||||
yes) sim_trace="1";;
|
||||
no) sim_trace="0";;
|
||||
*) as_fn_error "--enable-sim-trace does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting trace flags = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
# Check whether --enable-sim-warnings was given.
|
||||
if test "${enable_sim_warnings+set}" = set; then :
|
||||
@ -7839,10 +7850,6 @@ fi
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -33,16 +33,17 @@ if test x"$silent" != x"yes" && test x"$sim_alignment" != x""; then
|
||||
fi],[sim_alignment=""])dnl
|
||||
|
||||
|
||||
AC_MSG_CHECKING([whether to enable sim asserts])
|
||||
sim_assert="1"
|
||||
AC_ARG_ENABLE(sim-assert,
|
||||
[ --enable-sim-assert Specify whether to perform random assertions.],
|
||||
[case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) AC_MSG_ERROR("--enable-sim-assert does not take a value"); sim_assert="";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi],[sim_assert=""])dnl
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) AC_MSG_ERROR([--enable-sim-assert does not take a value]);;
|
||||
esac])dnl
|
||||
AC_DEFINE_UNQUOTED([WITH_ASSERT], [$sim_assert], [Sim assert settings])
|
||||
AC_MSG_RESULT($sim_assert)
|
||||
|
||||
|
||||
AC_ARG_ENABLE(sim-bitsize,
|
||||
@ -137,18 +138,19 @@ if test x"$silent" != x"yes" && test x"$sim_endian" != x""; then
|
||||
fi],[sim_endian=""])dnl
|
||||
|
||||
|
||||
AC_MSG_CHECKING([default sim environment setting])
|
||||
sim_env="0"
|
||||
AC_ARG_ENABLE(sim-env,
|
||||
[ --enable-sim-env=env Specify target environment (operating, virtual, user).],
|
||||
[case "${enableval}" in
|
||||
operating | os | oea) sim_env="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
virtual | vea) sim_env="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
user | uea) sim_env="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
no) sim_env="-DWITH_ENVIRONMENT=0";;
|
||||
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-env"); sim_env="";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_env" != x""; then
|
||||
echo "Setting env flags = $sim_env" 6>&1
|
||||
fi],[sim_env=""])dnl
|
||||
operating | os | oea) sim_env="OPERATING_ENVIRONMENT";;
|
||||
virtual | vea) sim_env="VIRTUAL_ENVIRONMENT";;
|
||||
user | uea) sim_env="USER_ENVIRONMENT";;
|
||||
no) sim_env="0";;
|
||||
*) AC_MSG_ERROR([Unknown value $enableval passed to --enable-sim-env]);;
|
||||
esac])dnl
|
||||
AC_DEFINE_UNQUOTED([WITH_ENVIRONMENT], [$sim_env], [Sim default environment])
|
||||
AC_MSG_RESULT($sim_env)
|
||||
|
||||
|
||||
AC_ARG_ENABLE(sim-filter,
|
||||
@ -533,16 +535,17 @@ if test x"$silent" != x"yes"; then
|
||||
fi])dnl
|
||||
|
||||
|
||||
AC_MSG_CHECKING([for sim stdio debug behavior])
|
||||
sim_stdio=0
|
||||
AC_ARG_ENABLE(sim-stdio,
|
||||
[ --enable-sim-stdio Specify whether to use stdio for console input/output.],
|
||||
[case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-stdio"); sim_stdio="";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi],[sim_stdio=""])dnl
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) AC_MSG_ERROR([Unknown value $enableval passed to --enable-sim-stdio]);;
|
||||
esac])dnl
|
||||
AC_DEFINE_UNQUOTED([WITH_STDIO], [$sim_stdio], [How to route I/O])
|
||||
AC_MSG_RESULT($sim_stdio)
|
||||
|
||||
|
||||
AC_ARG_ENABLE(sim-switch,
|
||||
@ -572,16 +575,17 @@ if test x"$silent" != x"yes" && test x"$sim_timebase" != x""; then
|
||||
fi],[sim_timebase=""])dnl
|
||||
|
||||
|
||||
AC_MSG_CHECKING([for sim trace settings])
|
||||
sim_trace="1"
|
||||
AC_ARG_ENABLE(sim-trace,
|
||||
[ --enable-sim-trace Specify whether tracing is supported.],
|
||||
[case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
*) AC_MSG_ERROR("--enable-sim-trace does not take a value"); sim_trace="";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting trace flags = $sim_trace" 6>&1
|
||||
fi],[sim_trace=""])dnl
|
||||
yes) sim_trace="1";;
|
||||
no) sim_trace="0";;
|
||||
*) AC_MSG_ERROR([--enable-sim-trace does not take a value]);;
|
||||
esac])dnl
|
||||
AC_DEFINE_UNQUOTED([WITH_TRACE], [$sim_trace], [Sim trace settings])
|
||||
AC_MSG_RESULT($sim_trace)
|
||||
|
||||
|
||||
AC_ARG_ENABLE(sim-warnings,
|
||||
@ -858,18 +862,14 @@ AC_SUBST(sim_smp)
|
||||
AC_SUBST(sim_igen_smp)
|
||||
AC_SUBST(sim_bitsize)
|
||||
AC_SUBST(sim_hostbitsize)
|
||||
AC_SUBST(sim_env)
|
||||
AC_SUBST(sim_timebase)
|
||||
AC_SUBST(sim_alignment)
|
||||
AC_SUBST(sim_float)
|
||||
AC_SUBST(sim_trace)
|
||||
AC_SUBST(sim_assert)
|
||||
AC_SUBST(sim_reserved)
|
||||
AC_SUBST(sim_monitor)
|
||||
AC_SUBST(sim_model)
|
||||
AC_SUBST(sim_default_model)
|
||||
AC_SUBST(sim_model_issue)
|
||||
AC_SUBST(sim_stdio)
|
||||
AC_SUBST(sim_termio)
|
||||
AC_SUBST(sim_devzero)
|
||||
AC_SUBST(sim_callback)
|
||||
|
@ -111,10 +111,6 @@ extern int current_target_byte_order;
|
||||
#define VIRTUAL_ENVIRONMENT 2
|
||||
#define OPERATING_ENVIRONMENT 3
|
||||
|
||||
#ifndef WITH_ENVIRONMENT
|
||||
#define WITH_ENVIRONMENT 0
|
||||
#endif
|
||||
|
||||
extern int current_environment;
|
||||
#define CURRENT_ENVIRONMENT (WITH_ENVIRONMENT \
|
||||
? WITH_ENVIRONMENT \
|
||||
@ -223,20 +219,6 @@ extern int current_floating_point;
|
||||
|
||||
Control the inclusion of debugging code. */
|
||||
|
||||
/* Include the tracing code. Disabling this eliminates all tracing
|
||||
code */
|
||||
|
||||
#ifndef WITH_TRACE
|
||||
#define WITH_TRACE 1
|
||||
#endif
|
||||
|
||||
/* include code that checks assertions scattered through out the
|
||||
program */
|
||||
|
||||
#ifndef WITH_ASSERT
|
||||
#define WITH_ASSERT 1
|
||||
#endif
|
||||
|
||||
/* Whether to check instructions for reserved bits being set */
|
||||
|
||||
#ifndef WITH_RESERVED_BITS
|
||||
@ -283,10 +265,6 @@ extern int current_model_issue;
|
||||
#define DONT_USE_STDIO 2
|
||||
#define DO_USE_STDIO 1
|
||||
|
||||
#ifndef WITH_STDIO
|
||||
#define WITH_STDIO 0
|
||||
#endif
|
||||
|
||||
extern int current_stdio;
|
||||
#define CURRENT_STDIO (WITH_STDIO \
|
||||
? WITH_STDIO \
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -173,6 +176,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -204,6 +210,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/rl78/configure
vendored
164
sim/rl78/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4012,10 +4004,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12828,7 +12816,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12831 "configure"
|
||||
#line 12819 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12934,7 +12922,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12937 "configure"
|
||||
#line 12925 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13202,124 +13190,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -9,6 +9,9 @@
|
||||
/* --enable-cycle-stats */
|
||||
#undef CYCLE_STATS
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -179,6 +182,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -210,6 +216,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/rx/configure
vendored
164
sim/rx/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4017,10 +4009,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12833,7 +12821,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12836 "configure"
|
||||
#line 12824 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12939,7 +12927,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12942 "configure"
|
||||
#line 12930 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13207,124 +13195,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -170,6 +173,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -201,6 +207,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/sh/configure
vendored
164
sim/sh/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4027,10 +4019,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12843,7 +12831,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12846 "configure"
|
||||
#line 12834 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12949,7 +12937,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12952 "configure"
|
||||
#line 12940 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13217,124 +13205,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -176,6 +179,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -207,6 +213,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/sh64/configure
vendored
164
sim/sh64/configure
vendored
@ -607,10 +607,6 @@ CGEN_MAINT
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -685,8 +681,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -697,9 +691,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4033,10 +4025,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12849,7 +12837,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12852 "configure"
|
||||
#line 12840 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12955,7 +12943,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12958 "configure"
|
||||
#line 12946 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13223,124 +13211,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
@ -1,3 +1,7 @@
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* config.in, configure: Regenerate.
|
||||
|
||||
2016-01-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -3,6 +3,9 @@
|
||||
/* Define if building universal (internal helper macro) */
|
||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef DEBUG
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
@ -191,6 +194,9 @@
|
||||
/* Additional package description */
|
||||
#undef PKGVERSION
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef PROFILE
|
||||
|
||||
/* Bug reporting address */
|
||||
#undef REPORT_BUGS_TO
|
||||
|
||||
@ -222,6 +228,24 @@
|
||||
#endif
|
||||
|
||||
|
||||
/* Sim assert settings */
|
||||
#undef WITH_ASSERT
|
||||
|
||||
/* Sim debug setting */
|
||||
#undef WITH_DEBUG
|
||||
|
||||
/* Sim default environment */
|
||||
#undef WITH_ENVIRONMENT
|
||||
|
||||
/* Sim profile settings */
|
||||
#undef WITH_PROFILE
|
||||
|
||||
/* How to route I/O */
|
||||
#undef WITH_STDIO
|
||||
|
||||
/* Sim trace settings */
|
||||
#undef WITH_TRACE
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
#if defined AC_APPLE_UNIVERSAL_BUILD
|
||||
|
164
sim/v850/configure
vendored
164
sim/v850/configure
vendored
@ -604,10 +604,6 @@ cgen_breaks
|
||||
REPORT_BUGS_TEXI
|
||||
REPORT_BUGS_TO
|
||||
PKGVERSION
|
||||
sim_profile
|
||||
sim_trace
|
||||
sim_stdio
|
||||
sim_debug
|
||||
MAINT
|
||||
MAINTAINER_MODE_FALSE
|
||||
MAINTAINER_MODE_TRUE
|
||||
@ -682,8 +678,6 @@ CFLAGS
|
||||
CC
|
||||
WERROR_CFLAGS
|
||||
WARN_CFLAGS
|
||||
sim_xor_endian
|
||||
sim_smp
|
||||
sim_reserved_bits
|
||||
sim_inline
|
||||
sim_hw
|
||||
@ -694,9 +688,7 @@ sim_scache
|
||||
sim_float
|
||||
sim_endian
|
||||
sim_bitsize
|
||||
sim_assert
|
||||
sim_alignment
|
||||
sim_environment
|
||||
target_alias
|
||||
host_alias
|
||||
build_alias
|
||||
@ -4033,10 +4025,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -12849,7 +12837,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12852 "configure"
|
||||
#line 12840 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12955,7 +12943,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12958 "configure"
|
||||
#line 12946 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -13223,124 +13211,164 @@ fi
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim debug setting" >&5
|
||||
$as_echo_n "checking for sim debug setting... " >&6; }
|
||||
sim_debug="0"
|
||||
# Check whether --enable-sim-debug was given.
|
||||
if test "${enable_sim_debug+set}" = set; then :
|
||||
enableval=$enable_sim_debug; case "${enableval}" in
|
||||
yes) sim_debug="-DDEBUG=7 -DWITH_DEBUG=7";;
|
||||
no) sim_debug="-DDEBUG=0 -DWITH_DEBUG=0";;
|
||||
*) sim_debug="-DDEBUG='(${enableval})' -DWITH_DEBUG='(${enableval})'";;
|
||||
yes) sim_debug="7";;
|
||||
no) sim_debug="0";;
|
||||
*) sim_debug="($enableval)";;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_debug" != x""; then
|
||||
echo "Setting sim debug = $sim_debug" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_debug=""
|
||||
if test "$sim_debug" != "0"; then
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_DEBUG $sim_debug
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_debug" >&5
|
||||
$as_echo "$sim_debug" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim stdio debug behavior" >&5
|
||||
$as_echo_n "checking for sim stdio debug behavior... " >&6; }
|
||||
sim_stdio="0"
|
||||
# Check whether --enable-sim-stdio was given.
|
||||
if test "${enable_sim_stdio+set}" = set; then :
|
||||
enableval=$enable_sim_stdio; case "${enableval}" in
|
||||
yes) sim_stdio="-DWITH_STDIO=DO_USE_STDIO";;
|
||||
no) sim_stdio="-DWITH_STDIO=DONT_USE_STDIO";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-stdio\"" "$LINENO" 5; sim_stdio="";;
|
||||
yes) sim_stdio="DO_USE_STDIO";;
|
||||
no) sim_stdio="DONT_USE_STDIO";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-stdio" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_stdio" != x""; then
|
||||
echo "Setting stdio flags = $sim_stdio" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_stdio=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_STDIO $sim_stdio
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_stdio" >&5
|
||||
$as_echo "$sim_stdio" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim trace settings" >&5
|
||||
$as_echo_n "checking for sim trace settings... " >&6; }
|
||||
sim_trace="~TRACE_debug"
|
||||
# Check whether --enable-sim-trace was given.
|
||||
if test "${enable_sim_trace+set}" = set; then :
|
||||
enableval=$enable_sim_trace; case "${enableval}" in
|
||||
yes) sim_trace="-DWITH_TRACE=-1";;
|
||||
no) sim_trace="-DWITH_TRACE=0";;
|
||||
yes) sim_trace="-1";;
|
||||
no) sim_trace="0";;
|
||||
[-0-9]*)
|
||||
sim_trace="-DWITH_TRACE='(${enableval})'";;
|
||||
sim_trace="'(${enableval})'";;
|
||||
[[:lower:]]*)
|
||||
sim_trace=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_trace" = x; then
|
||||
sim_trace="-DWITH_TRACE='(TRACE_$x"
|
||||
sim_trace="(TRACE_$x"
|
||||
else
|
||||
sim_trace="${sim_trace}|TRACE_$x"
|
||||
fi
|
||||
done
|
||||
sim_trace="$sim_trace)'" ;;
|
||||
sim_trace="$sim_trace)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_trace" != x""; then
|
||||
echo "Setting sim trace = $sim_trace" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_trace=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_TRACE $sim_trace
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_trace" >&5
|
||||
$as_echo "$sim_trace" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim profile settings" >&5
|
||||
$as_echo_n "checking for sim profile settings... " >&6; }
|
||||
profile="1"
|
||||
sim_profile="-1"
|
||||
# Check whether --enable-sim-profile was given.
|
||||
if test "${enable_sim_profile+set}" = set; then :
|
||||
enableval=$enable_sim_profile; case "${enableval}" in
|
||||
yes) sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1";;
|
||||
no) sim_profile="-DPROFILE=0 -DWITH_PROFILE=0";;
|
||||
yes) profile="1" sim_profile="-1";;
|
||||
no) profile="0" sim_profile="0";;
|
||||
[-0-9]*)
|
||||
sim_profile="-DPROFILE='(${enableval})' -DWITH_PROFILE='(${enableval})'";;
|
||||
profile="(${enableval})" sim_profile="(${enableval})";;
|
||||
[a-z]*)
|
||||
profile="1"
|
||||
sim_profile=""
|
||||
for x in `echo "$enableval" | sed -e "s/,/ /g"`; do
|
||||
if test x"$sim_profile" = x; then
|
||||
sim_profile="-DWITH_PROFILE='(PROFILE_$x"
|
||||
sim_profile="(PROFILE_$x"
|
||||
else
|
||||
sim_profile="${sim_profile}|PROFILE_$x"
|
||||
fi
|
||||
done
|
||||
sim_profile="$sim_profile)'" ;;
|
||||
sim_profile="$sim_profile)" ;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then
|
||||
echo "Setting sim profile = $sim_profile" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define PROFILE $profile
|
||||
_ACEOF
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_PROFILE $sim_profile
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_profile" >&5
|
||||
$as_echo "$sim_profile" >&6; }
|
||||
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
|
||||
$as_echo_n "checking whether to enable sim asserts... " >&6; }
|
||||
sim_assert="1"
|
||||
# Check whether --enable-sim-assert was given.
|
||||
if test "${enable_sim_assert+set}" = set; then :
|
||||
enableval=$enable_sim_assert; case "${enableval}" in
|
||||
yes) sim_assert="-DWITH_ASSERT=1";;
|
||||
no) sim_assert="-DWITH_ASSERT=0";;
|
||||
*) as_fn_error "\"--enable-sim-assert does not take a value\"" "$LINENO" 5; sim_assert="";;
|
||||
yes) sim_assert="1";;
|
||||
no) sim_assert="0";;
|
||||
*) as_fn_error "--enable-sim-assert does not take a value" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_assert" != x""; then
|
||||
echo "Setting assert flags = $sim_assert" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_assert=""
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ASSERT $sim_assert
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
|
||||
$as_echo "$sim_assert" >&6; }
|
||||
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking default sim environment setting" >&5
|
||||
$as_echo_n "checking default sim environment setting... " >&6; }
|
||||
sim_environment="ALL_ENVIRONMENT"
|
||||
# Check whether --enable-sim-environment was given.
|
||||
if test "${enable_sim_environment+set}" = set; then :
|
||||
enableval=$enable_sim_environment; case "${enableval}" in
|
||||
all | ALL) sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="-DWITH_ENVIRONMENT=USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="-DWITH_ENVIRONMENT=VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="-DWITH_ENVIRONMENT=OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "\"Unknown value $enableval passed to --enable-sim-environment\"" "$LINENO" 5;
|
||||
sim_environment="";;
|
||||
all | ALL) sim_environment="ALL_ENVIRONMENT";;
|
||||
user | USER) sim_environment="USER_ENVIRONMENT";;
|
||||
virtual | VIRTUAL) sim_environment="VIRTUAL_ENVIRONMENT";;
|
||||
operating | OPERATING) sim_environment="OPERATING_ENVIRONMENT";;
|
||||
*) as_fn_error "Unknown value $enableval passed to --enable-sim-environment" "$LINENO" 5;;
|
||||
esac
|
||||
if test x"$silent" != x"yes" && test x"$sim_environment" != x""; then
|
||||
echo "Setting sim environment = $sim_environment" 6>&1
|
||||
fi
|
||||
else
|
||||
sim_environment="-DWITH_ENVIRONMENT=ALL_ENVIRONMENT"
|
||||
fi
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define WITH_ENVIRONMENT $sim_environment
|
||||
_ACEOF
|
||||
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_environment" >&5
|
||||
$as_echo "$sim_environment" >&6; }
|
||||
|
||||
|
||||
sim_inline="-DDEFAULT_INLINE=0"
|
||||
# Check whether --enable-sim-inline was given.
|
||||
|
Loading…
x
Reference in New Issue
Block a user