riscv-musl icon indicating copy to clipboard operation
riscv-musl copied to clipboard

musl libc for RISC-V

Results 4 riscv-musl issues
Sort by recently updated
recently updated
newest added

I've just crossed off my last TODO by adding a VDSO implementation for #4. I intend to leave it open for feedback for a week or two from any interested...

`jmp_buf` is declared as an array of 28 register-sized values: https://github.com/riscv/riscv-musl/blob/staging/arch/riscv64/bits/setjmp.h#L1 but we are actually saving 12 + 12 + 2 = 26 registers: https://github.com/riscv/riscv-musl/blob/staging/src/setjmp/riscv64/setjmp.S#L10-L38 Moreover, `fs3` is being saved...

I was running libc-test on both musl RV32 and RV64 port and I happened to find that [math/fenv](https://repo.or.cz/libc-test.git/blob/HEAD:/src/math/fenv.c) fails due to a segmentation fault. It is caused by dereferencing FE_DFL_ENV,...

Hi! I'm trying to compile and boot Linux on a riscv32 core with no "A" extension so I'm creating a patch set for Linux 5.0.5 and riscv-musl to revert any...