Browse code

* Fixes for gcc and clang (while they can compile the code, the DLLs made aren't functional, but oh well).

* [2SF] Used more up-to-date asmjit, despite the ugly looking code.

Naram Qashat authored on 2014/09/17 19:51:45
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,29 @@
1
+// [AsmJit]
2
+// Complete x86/x64 JIT and Remote Assembler for C++.
3
+//
4
+// [License]
5
+// Zlib - See LICENSE.md file in the package.
6
+
7
+#pragma once
8
+
9
+// [Dependencies - AsmJit]
10
+#include "build.h"
11
+
12
+#include "base/assembler.h"
13
+#include "base/codegen.h"
14
+#include "base/compiler.h"
15
+#include "base/constpool.h"
16
+#include "base/containers.h"
17
+#include "base/cpuinfo.h"
18
+#include "base/cputicks.h"
19
+#include "base/error.h"
20
+#include "base/globals.h"
21
+#include "base/intutil.h"
22
+#include "base/lock.h"
23
+#include "base/logger.h"
24
+#include "base/operand.h"
25
+#include "base/runtime.h"
26
+#include "base/string.h"
27
+#include "base/vectypes.h"
28
+#include "base/vmem.h"
29
+#include "base/zone.h"