diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-06-19 20:06:12 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-06-21 22:20:18 -0400 |
commit | 456ef1c1d43c0407801fb2d59db355472be8a554 (patch) | |
tree | ae7c5f7bbef0f9f9b05f73d97c8131538b52a965 /sim/mips/configure | |
parent | be0387eed099dbc2f2bdc92fbf60e04f846c3b2b (diff) | |
download | gdb-456ef1c1d43c0407801fb2d59db355472be8a554.zip gdb-456ef1c1d43c0407801fb2d59db355472be8a554.tar.gz gdb-456ef1c1d43c0407801fb2d59db355472be8a554.tar.bz2 |
sim: unify hardware settings
Move these options up to the common dir so we only test & export
them once across all ports.
Diffstat (limited to 'sim/mips/configure')
-rwxr-xr-x | sim/mips/configure | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/sim/mips/configure b/sim/mips/configure index 98ad8d5..241879d 100755 --- a/sim/mips/configure +++ b/sim/mips/configure @@ -587,10 +587,6 @@ LIBOBJS sim_default_model sim_scache cgen_breaks -sim_hw_sockser -sim_hw_cflags -SIM_ENABLE_HW_FALSE -SIM_ENABLE_HW_TRUE sim_multi_obj sim_multi_src sim_multi_igen_configs @@ -648,7 +644,6 @@ enable_option_checking enable_sim_reserved_bits enable_sim_bitsize enable_sim_float -enable_sim_hardware ' ac_precious_vars='build_alias host_alias @@ -1266,7 +1261,6 @@ Optional Features: --enable-sim-bitsize=N Specify target bitsize (32 or 64) --enable-sim-float Specify that the target processor has floating point hardware - --enable-sim-hardware Whether to enable hardware/device simulation Report bugs to the package provider. _ACEOF @@ -2195,48 +2189,6 @@ sim_micromips_flags=" -F ${sim_micromips_filter} ${sim_micromips_machine} ${si -{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sim hardware settings" >&5 -$as_echo_n "checking for sim hardware settings... " >&6; } -# Check whether --enable-sim-hardware was given. -if test "${enable_sim_hardware+set}" = set; then : - enableval=$enable_sim_hardware; -else - enable_sim_hardware="yes" -fi - -sim_hw_sockser= -if test "$enable_sim_hardware" = no; then - sim_hw_cflags="-DWITH_HW=0" -elif test "$enable_sim_hardware" = yes; then - sim_hw_cflags="-DWITH_HW=1" - # mingw does not support sockser - case ${host} in - *mingw*) ;; - *) # TODO: We don't add dv-sockser to sim_hw as it is not a "real" device - # that you instatiate. Instead, other code will call into it directly. - # At some point, we should convert it over. - sim_hw_sockser="dv-sockser.o" - sim_hw_cflags="$sim_hw_cflags -DHAVE_DV_SOCKSER" - ;; - esac -else - as_fn_error $? "unknown argument \"$enable_sim_hardware\"" "$LINENO" 5 -fi -if test "$enable_sim_hardware" = "yes"; then - SIM_ENABLE_HW_TRUE= - SIM_ENABLE_HW_FALSE='#' -else - SIM_ENABLE_HW_TRUE='#' - SIM_ENABLE_HW_FALSE= -fi - - -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${enable_sim_hardware}" >&5 -$as_echo "${enable_sim_hardware}" >&6; } - - - - cgen_breaks="" if grep CGEN_MAINT $srcdir/Makefile.in >/dev/null; then cgen_breaks="break cgen_rtx_error"; |