sim: m32r: add __linux__ hack for non-Linux hosts
authorMike Frysinger <vapier@gentoo.org>
Fri, 20 Aug 2021 01:00:42 +0000 (21:00 -0400)
committerMike Frysinger <vapier@gentoo.org>
Sun, 22 Aug 2021 07:11:16 +0000 (03:11 -0400)
The m32r Linux syscall emulation logic assumes the host environment
directly matches -- it's being run on 32-bit little endian Linux.
This breaks building for non-Linux systems, so put all the code in
__linux__ ifdef checks.  This code needs a lot of love to make it
work everywhere, but let's at least unbreak it for non-Linux hosts.

sim/m32r/traps.c

index b9912f95106e0218d3c82e011188bde807bdf73d..2d7738b1f3cca3fd226db2d9393bea7d9352fbf5 100644 (file)
 #include <time.h>
 #include <unistd.h>
 #include <utime.h>
+/* TODO: The Linux syscall emulation needs work to support non-Linux hosts.
+   Use an OS hack for now so the CPU emulation is available everywhere.
+   NB: The emulation is also missing argument conversion (endian & bitsize)
+   even on Linux hosts.  */
+#ifdef __linux__
 #include <sys/mman.h>
 #include <sys/poll.h>
 #include <sys/resource.h>
@@ -49,6 +54,7 @@
 #include <linux/sysctl.h>
 #include <linux/types.h>
 #include <linux/unistd.h>
+#endif
 
 #define TRAP_LINUX_SYSCALL 2
 #define TRAP_FLUSH_CACHE 12
@@ -203,6 +209,7 @@ m32r_trap (SIM_CPU *current_cpu, PCADDR pc, int num)
        break;
       }
 
+#ifdef __linux__
     case TRAP_LINUX_SYSCALL:
       {
        CB_SYSCALL s;
@@ -1302,6 +1309,7 @@ m32r_trap (SIM_CPU *current_cpu, PCADDR pc, int num)
          m32rbf_h_gr_set (current_cpu, 0, result);
        break;
       }
+#endif
 
     case TRAP_BREAKPOINT:
       sim_engine_halt (sd, current_cpu, NULL, pc,