diff options
author | Sergey Lapin <slapin@ossfans.org> | 2009-05-14 18:00:54 +0400 |
---|---|---|
committer | Sergey Lapin <slapin@ossfans.org> | 2009-05-14 18:00:54 +0400 |
commit | cfbb95b3bb62ce2ada4fdd7897a0af0a38b4b628 (patch) | |
tree | 79040e1fb929da52fd6e014468c7eea2e2464288 /recipes/cacao | |
parent | d02457b03abe27767741f709a461e8d46294dd01 (diff) | |
parent | b530076ad1209bceed621eec39e82397732afd6e (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into afeb9260-tmp
Diffstat (limited to 'recipes/cacao')
-rw-r--r-- | recipes/cacao/cacao-native_0.99.4.bb | 3 | ||||
-rw-r--r-- | recipes/cacao/files/cacao-disable-stackbase-check.patch | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/recipes/cacao/cacao-native_0.99.4.bb b/recipes/cacao/cacao-native_0.99.4.bb index 1b996ffbcc..1e09e3ddec 100644 --- a/recipes/cacao/cacao-native_0.99.4.bb +++ b/recipes/cacao/cacao-native_0.99.4.bb @@ -1,4 +1,5 @@ -# Do not use this on amd64 hosts yet! +# 0.99.4 appears to be broken on amd64 and i386 :( +DEFAULT_PREFERENCE = "-1" require cacao-native.inc diff --git a/recipes/cacao/files/cacao-disable-stackbase-check.patch b/recipes/cacao/files/cacao-disable-stackbase-check.patch new file mode 100644 index 0000000000..8eb20894d4 --- /dev/null +++ b/recipes/cacao/files/cacao-disable-stackbase-check.patch @@ -0,0 +1,12 @@ +Index: cacao-0.99.3+hg20090109/src/mm/boehm-gc/os_dep.c +=================================================================== +--- cacao-0.99.3+hg20090109.orig/src/mm/boehm-gc/os_dep.c 2009-02-15 16:29:15.000000000 +0100 ++++ cacao-0.99.3+hg20090109/src/mm/boehm-gc/os_dep.c 2009-02-15 16:29:24.000000000 +0100 +@@ -1077,7 +1077,6 @@ + c = stat_buf[buf_offset++]; + } + close(f); +- if (result < 0x10000000) ABORT("Absurd stack bottom value"); + return (ptr_t)result; + } + |