• JackbyDev@programming.dev
    link
    fedilink
    English
    arrow-up
    0
    ·
    24 days ago

    Didn’t Rust itself used to have a compiler written in a different language? I mean, obviously it would’ve had to at some point but I think I remember reading about them abandoning it once they didn’t need it. Why not use that?

    • underscores@lemmy.dbzer0.com
      link
      fedilink
      arrow-up
      0
      ·
      24 days ago

      You can technically do it, but it’s a convoluted path. The article talks about it. Basically to bootstrap that way you need to go through a lot of versions of rust, compile rust 0.7 in scala, compile scala in scheme, and compile scheme in C using gcc. For gcc you need to compile a chain of versions back to when it was written in C instead of C++, plus the whole TinyCC bootstrapping path.

      • JackbyDev@programming.dev
        link
        fedilink
        English
        arrow-up
        0
        ·
        24 days ago

        Ah okay. The article was a little over my head so I mostly skimmed it. This makes sense what you’re saying though. It’s easy to forget the level of bootstrapping they’re trying to do is all the way to assembly.

        It’s the sort of thing if you think about too long you’ll get paranoid and start using Gentoo exclusively lol.

      • Giooschi@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        23 days ago

        compile rust 0.7 in scala

        Not sure if there was another rewrite, but AFAIK (and the article agrees with me) rustc was originally written in Ocaml