Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to build lli (LLVM JIT) for RISCV? #70

Open
Joejiong opened this issue Aug 28, 2021 · 1 comment
Open

How to build lli (LLVM JIT) for RISCV? #70

Joejiong opened this issue Aug 28, 2021 · 1 comment

Comments

@Joejiong
Copy link

Hi everyone,

I am trying to build a JIT for the RISC-V platform, but I could not figure
out how. Could you provide some hints? Great thanks!

Initially, I found that LLVM has RISCV backend, and I compiled it following
the instructions here https://github.com/lowRISC/riscv-llvm. I got a
cross-compiler version of clang (running on x86 and the generated binary
runs on RISC-V), but the lli is still a X86 tool.

Then, I tried to build LLVM with riscv-gnu-toolchain
https://github.com/riscv/riscv-gnu-toolchain, and I got many tools such
as llc working on RISC-V properly. However, the lli still could not work
properly. When I tried to process the LLVM bytecode file (.ll file) on
RISC-V using lli, I got the error:
error creating EE: No available targets are compatible with this
triple.
Furthermore, when I typed: ./lli --version, I got:

Default target:
x86_64-unknown-linux-gnu  
Host CPU: (unknown)

But when I typed: llc -version (llc works fine), I got:

  DEBUG build with assertions.
  Default target: x86_64-unknown-linux-gnu
  Host CPU: (unknown)
  Registered Targets:
    riscv32 - 32-bit RISC-V
    riscv64 - 64-bit RISC-V
    x86     - 32-bit X86: Pentium-Pro and above
    x86-64  - 64-bit X86: EM64T and AMD64

It seems that the lli tool does not support RISC-V target.

Could anyone give me some hints? Thank you so much!!

Best,

@luismarques
Copy link
Contributor

Hi,

You aren't doing anything wrong. lli does not, in fact, support RISC-V.

Best,
Luís

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants