You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, RISCV support is missing. The target is not recognized and the system compiler is invoked, which will of course fail. Since RISCV is an supported RUST target in stable, I think it would make sense to support this platform.
For my current project on RISCV32, I could add support (at least for GCC) by simply adding:
Currently, RISCV support is missing. The target is not recognized and the system compiler is invoked, which will of course fail. Since RISCV is an supported RUST target in stable, I think it would make sense to support this platform.
For my current project on RISCV32, I could add support (at least for GCC) by simply adding:
in src/lib.rs:Build::get_base_compiler (around line 1800). I guess for complete support you should add similar lines for:
Which would probably be something like:
Please note that I didn't test this!
The text was updated successfully, but these errors were encountered: