hongbo_zhang 6 months ago

MoonBit supports the LLVM backend. With this, it achieved 8× Java’s performance in FFT and introduced out-of-the-box debugging with DWARF symbol injection, enabling precise source mapping directly to compiled outputs.

MoonBit will soon compile directly to native binary files without relying on a C compiler. This eliminates various compatibility issues associated with C compilers.

  • code_mary22 6 months ago

    Does this mean MoonBit will get JIT support soon?

    • hongbo_zhang 6 months ago

      we have a interpreter mode which takes advantage of tcc for fast interpretion

techblaze3 6 months ago

I assume there was a C backend before — some numbers comparing that and the wasm backend with LLVM would’ve been helpful."

  • hongbo_zhang 6 months ago

    The LLVM mode currently is not good as C backend, but we are working on it to bring it comparable to C backend

kukiTsui 6 months ago

It's great to see MoonBit adopt llvm, but is it relying on a c compiler or independent?

  • hongbo_zhang 6 months ago

    we used to output C for native backend support

  • TitanShift 6 months ago

    "Once support for distributing precompiled runtime libraries is implemented, MoonBit programs will be completely independent of the C compiler, generating native executables using only a linker."

tech_peter01 6 months ago

Wonder how the LLVM backend affects compile times. Anyone tried it yet?

  • hongbo_zhang 6 months ago

    it is not the optimial, for fast native mode, we rely on tcc for fast interpretion

chenhoey1211 6 months ago

How does MoonBit’s LLVM backend compare to Zig or Rust?