summaryrefslogtreecommitdiff
path: root/tools/lli
diff options
context:
space:
mode:
authorAndrew Kaylor <andrew.kaylor@intel.com>2013-10-02 19:26:16 +0000
committerAndrew Kaylor <andrew.kaylor@intel.com>2013-10-02 19:26:16 +0000
commitb47c0108b3053e36599aec5b3313ea89608ae90a (patch)
tree5eee6aea7bc9c468e8134a5be58495c631ce258c /tools/lli
parent6623d050c6f4351293bc1849e49bc0e37ec04596 (diff)
downloadllvm-b47c0108b3053e36599aec5b3313ea89608ae90a.tar.gz
llvm-b47c0108b3053e36599aec5b3313ea89608ae90a.tar.bz2
llvm-b47c0108b3053e36599aec5b3313ea89608ae90a.tar.xz
Fix build problems with remote lli implementation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191848 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli')
-rw-r--r--tools/lli/ChildTarget/Unix/ChildTarget.inc21
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/lli/ChildTarget/Unix/ChildTarget.inc b/tools/lli/ChildTarget/Unix/ChildTarget.inc
index 9550e508d6..cd42f34edd 100644
--- a/tools/lli/ChildTarget/Unix/ChildTarget.inc
+++ b/tools/lli/ChildTarget/Unix/ChildTarget.inc
@@ -15,7 +15,28 @@
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
+
+#ifdef HAVE_SYS_MMAN_H
#include <sys/mman.h>
+#endif
+
+#ifdef __APPLE__
+#include <mach/mach.h>
+#endif
+
+#if defined(__mips__)
+# if defined(__OpenBSD__)
+# include <mips64/sysarch.h>
+# else
+# include <sys/cachectl.h>
+# endif
+#endif
+
+#ifdef __APPLE__
+extern "C" void sys_icache_invalidate(const void *Addr, size_t len);
+#else
+extern "C" void __clear_cache(void *, void*);
+#endif
namespace {