summaryrefslogtreecommitdiff
path: root/tcg/mips
diff options
context:
space:
mode:
authorBrad <brad@comstyle.com>2011-05-25 23:06:00 -0400
committerAurelien Jarno <aurelien@aurel32.net>2011-06-03 18:23:53 +0200
commit03938c133e60c10a6903ddf71021d76496d69cb0 (patch)
treeccace830090249f6bf6fca9b5f0a058d434ea881 /tcg/mips
parentb7fa9214d8d4f57992c9acd0ccb125c54a095f00 (diff)
downloadqemu-03938c133e60c10a6903ddf71021d76496d69cb0.tar.gz
Use the correct header in the TCG MIPS code to find cacheflush() on OpenBSD.
Use the correct header in the TCG MIPS code to find cacheflush() on OpenBSD to fix compilation of the MIPS host support for OpenBSD/mips64 based architecures. Signed-off-by: Brad Smith <brad@comstyle.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'tcg/mips')
-rw-r--r--tcg/mips/tcg-target.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tcg/mips/tcg-target.h b/tcg/mips/tcg-target.h
index 0028bfa562..8cb7d88eb6 100644
--- a/tcg/mips/tcg-target.h
+++ b/tcg/mips/tcg-target.h
@@ -102,7 +102,11 @@ enum {
/* guest base is supported */
#define TCG_TARGET_HAS_GUEST_BASE
+#ifdef __OpenBSD__
+#include <machine/sysarch.h>
+#else
#include <sys/cachectl.h>
+#endif
static inline void flush_icache_range(unsigned long start, unsigned long stop)
{