Initial RISC-V64 support

This commit is contained in:
Andrey Turkin
2024-06-17 10:00:39 +03:00
parent ff853a7b82
commit a4122753e6
34 changed files with 1196 additions and 34 deletions
+4 -1
View File
@@ -313,7 +313,10 @@ pub unsafe extern "C" fn exit(status: c_int) {
(*f)();
}
_fini();
#[cfg(not(target_arch = "riscv64"))] // risc-v uses arrays exclusively
{
_fini();
}
ld_so::fini();