[Bug 514] shark build failure on ARM using thumb toolchain
bugzilla-daemon at icedtea.classpath.org
bugzilla-daemon at icedtea.classpath.org
Mon Jul 19 07:43:43 PDT 2010
http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=514
xerxes at zafena.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|shark build failure on ARM |shark build failure on ARM
| |using thumb toolchain
------- Comment #4 from xerxes at zafena.se 2010-07-19 14:43 -------
llvm/lib/System/Unix/Host.inc contain this switch at LLVM compiletime:
// FIXME: We need to pick the right ARM triple (which involves querying the
// chip). However, for now this is most important for LLVM arch selection, so
// we only need to make sure to distinguish ARM and Thumb.
# if defined(__thumb__)
Arch = "thumb";
# else
Arch = "arm";
# endif
This makes llvm use the thumb JIT backend by default when compiling with a
thumb toolchain, unfortunally the thumb jit backend are not implemented, see
http://llvm.org/bugs/show_bug.cgi?id=6223 and thats why you are hitting this
bug.
you can pass -march=arm or -mtriple=arm to the JIT at runtime to force llvm to
use the implemented ARM JIT
--
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the distro-pkg-dev
mailing list