diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2011-11-12 20:58:34 +0100 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2011-11-26 23:41:44 +0100 |
commit | 57e069cde6617f00ca8834a82c6f360af43d5067 (patch) | |
tree | 48cbe15e96d217c45acfa64b0c13aad8c6424980 /recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch | |
download | meta-java-57e069cde6617f00ca8834a82c6f360af43d5067.tar.gz |
meta-java: initial commit
* taken over mostly stuff from oe classic
* cleaned up recipes
* added license checksums
* bump icedtea6-native to 1.8.11
* use jamvm from git as native
Diffstat (limited to 'recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch')
-rw-r--r-- | recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch b/recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch new file mode 100644 index 0000000..e47ee50 --- /dev/null +++ b/recipes-core/openjdk/openjdk-6/icedtea-llvm_headers.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | Index: openjdk/hotspot/src/share/vm/shark/llvmHeaders.hpp | ||
2 | =================================================================== | ||
3 | --- openjdk/hotspot/src/share/vm/shark/llvmHeaders.hpp 2011-11-18 20:38:09.000000000 +0100 | ||
4 | +++ openjdk/hotspot/src/share/vm/shark/llvmHeaders.hpp 2011-11-18 21:03:15.781644337 +0100 | ||
5 | @@ -38,7 +38,11 @@ | ||
6 | #include <llvm/ModuleProvider.h> | ||
7 | #endif | ||
8 | #include <llvm/Support/IRBuilder.h> | ||
9 | +#if SHARK_LLVM_VERSION >= 29 | ||
10 | +#include <llvm/Support/Threading.h> | ||
11 | +#else | ||
12 | #include <llvm/System/Threading.h> | ||
13 | +#endif | ||
14 | #include <llvm/Target/TargetSelect.h> | ||
15 | #include <llvm/Type.h> | ||
16 | #include <llvm/ExecutionEngine/JITMemoryManager.h> | ||
17 | @@ -47,8 +51,12 @@ | ||
18 | #include <llvm/ExecutionEngine/JIT.h> | ||
19 | #include <llvm/ADT/StringMap.h> | ||
20 | #include <llvm/Support/Debug.h> | ||
21 | +#if SHARK_LLVM_VERSION >= 29 | ||
22 | +#include <llvm/Support/Host.h> | ||
23 | +#else | ||
24 | #include <llvm/System/Host.h> | ||
25 | #endif | ||
26 | +#endif | ||
27 | |||
28 | #include <map> | ||
29 | |||