2013-03-23 Joel Sherrill <joel.sherrill@oarcorp.com>
authorJoel Sherrill <joel.sherrill@oarcorp.com>
Sat, 23 Mar 2013 15:05:07 +0000 (15:05 +0000)
committerJoel Sherrill <joel.sherrill@oarcorp.com>
Sat, 23 Mar 2013 15:05:07 +0000 (15:05 +0000)
* configure.ac: Address use of dv-sockser.o.
* tconfig.in: Conditionalize use of dv_sockser_install.
* configure: Regenerated.
* config.in: Regenerated.

sim/mips/ChangeLog
sim/mips/config.in
sim/mips/configure
sim/mips/configure.ac
sim/mips/tconfig.in

index 4d5bde28da5725e723b29e19ae4e8c2402cded1a..7d91efe5bc67f173a462ecc7cd67d0af2fc0b123 100644 (file)
@@ -1,3 +1,10 @@
+2013-03-23  Joel Sherrill  <joel.sherrill@oarcorp.com>
+
+       * configure.ac: Address use of dv-sockser.o.
+       * tconfig.in: Conditionalize use of dv_sockser_install.
+       * configure: Regenerated.
+       * config.in: Regenerated.
+
 2012-10-04  Chao-ying Fu  <fu@mips.com>
            Steve Ellcey  <sellcey@mips.com>
 
index 9f71eb855f75d9da7cf5d0b6b48dfd3fa9538c9c..ef3289b95a860870d328129d87db6f8939415c54 100644 (file)
@@ -16,6 +16,9 @@
 /* Define to 1 if you have the <dlfcn.h> header file. */
 #undef HAVE_DLFCN_H
 
+/* Define if dv-sockser is usable. */
+#undef HAVE_DV_SOCKSER
+
 /* Define to 1 if you have the <errno.h> header file. */
 #undef HAVE_ERRNO_H
 
 /* Define to 1 if you have the `__setfpucw' function. */
 #undef HAVE___SETFPUCW
 
+/* Define to the sub-directory in which libtool stores uninstalled libraries.
+   */
+#undef LT_OBJDIR
+
 /* Name of this package. */
 #undef PACKAGE
 
index c4cb96acc3fcf8da4181e3912ee6582c6597539f..38ebfbd4c123d1dd6eb1464685d83288a01cd1e8 100755 (executable)
@@ -605,6 +605,7 @@ mips_extra_libs
 XMKMF
 mips_igen_engine
 mips_extra_objs
+SIM_DV_SOCKSER_O
 sim_multi_obj
 sim_multi_src
 sim_multi_igen_configs
@@ -12300,7 +12301,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12303 "configure"
+#line 12304 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -12406,7 +12407,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12409 "configure"
+#line 12410 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13724,7 +13725,7 @@ if test ${sim_gen} = MULTI; then
 
   cat << __EOF__ > multi-run.c
 /* Main entry point for MULTI simulators.
-   Copyright (C) 2003, 2007, 2010, 2012 Free Software Foundation, Inc.
+   Copyright (C) 2003-2013 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -13909,7 +13910,7 @@ case "${target}" in
        ;;
 esac
 
-if test x"$hw_enabled" = x"yes"; then
+if test x"$hw_enabled" != x"no"; then
   sim_hw_p=yes
 else
   sim_hw_p=no
@@ -13948,6 +13949,19 @@ else
       *) sim_hw="$sim_hw $i" ; sim_hw_objs="$sim_hw_objs dv-$i.o";;
     esac
   done
+  # mingw does not support sockser
+  SIM_DV_SOCKSER_O=""
+  case ${host} in
+    *mingw*) ;;
+    *) SIM_DV_SOCKSER_O="dv-sockser.o"
+
+cat >>confdefs.h <<_ACEOF
+#define HAVE_DV_SOCKSER 1
+_ACEOF
+
+       ;;
+  esac
+
 fi
 if test x"$silent" != x"yes" && test "$sim_hw_p" = "yes"; then
   echo "Setting hardware to $sim_hw_cflags, $sim_hw, $sim_hw_objs"
 else
 
 if test "$sim_hw_p" != yes; then
+  if test "$hw_enabled" = "always"; then
+    as_fn_error "Sorry, but this simulator requires that hardware support
+be enabled. Please configure without --disable-hw-support." "$LINENO" 5
+  fi
   sim_hw_objs=
   sim_hw_cflags="-DWITH_HW=0"
   sim_hw=
 ;;
 esac
 
-mips_extra_objs="dv-sockser.o"
+mips_extra_objs="$SIM_DV_SOCKSER_O"
+
 
+if test "$sim_hw_p" = yes -a -z "$SIM_DV_SOCKSER_O"; then
+       case " $sim_hw " in
+       *" tx3904sio "*)
+               as_fn_error "Sorry, but tx3904sio hardware support is
+unavailable for your target.  Please use --disable-sim-hardware, or pass a
+list of devices to enable that does not include that." "$LINENO" 5
+       esac
+fi
 
 
 # Choose simulator engine
index 862e2b5f562acee87f14efa66a5c72cd7142ead0..4949ad9193d4f85d84185b4063eece74333a992b 100644 (file)
@@ -419,9 +419,18 @@ case "${target}" in
        ;;
 esac
 SIM_AC_OPTION_HARDWARE($hw_enabled,$hw_devices,$hw_extra_devices)
-mips_extra_objs="dv-sockser.o"
+mips_extra_objs="$SIM_DV_SOCKSER_O"
 AC_SUBST(mips_extra_objs)
 
+if test "$sim_hw_p" = yes -a -z "$SIM_DV_SOCKSER_O"; then
+       case " $sim_hw " in
+       *" tx3904sio "*)
+               AC_MSG_ERROR([Sorry, but tx3904sio hardware support is
+unavailable for your target.  Please use --disable-sim-hardware, or pass a
+list of devices to enable that does not include that.])
+       esac
+fi
+
 
 # Choose simulator engine
 case "${target}" in
index 2f14ce11979ba946728554d32ead189ca6f8e43f..a68a5fb3a9d718ada00eb210cbf8513dd4d5e8e4 100644 (file)
 #include "gdb/remote-sim.h"
 #include "sim-module.h"
 
+/* FIXME: Revisit.  */
+#ifdef HAVE_DV_SOCKSER
 MODULE_INSTALL_FN dv_sockser_install;
 #define MODULE_LIST dv_sockser_install,
+#endif
+
 #else
 #define SIM_HANDLES_LMA 0
 #endif
This page took 0.034837 seconds and 4 git commands to generate.