为DragonOS移植了的relibc

longjin 75d66c5566 remove malloc.c 1 éve
.cargo ed19381547 target=x86_64-dragonos能通过编译 1 éve
.vscode bfe7a7f316 malloc with error 1 éve
core_io 9eeb73319d Update core_io submodule to a valid commit. 3 éve
include 0646140d99 Remove detailed abort, too many compatibility issues 1 éve
openlibm b3dda7519d Update openlibm 5 éve
posix-regex 0684fb6e4c Bump posix-regex version 6 éve
pthreads-emb 9c423abb5f Update pthreads-emb 3 éve
ralloc 6c11a18240 Go back to patched ralloc 6 éve
src 75d66c5566 remove malloc.c 1 éve
tests ec6243bc5b wctrans/towctrans implementation proposal. 1 éve
.editorconfig 6952a079ae Fix CI 4 éve
.gitignore a7480ea656 Fix global symbols relocations 3 éve
.gitlab-ci.yml 9a7dfc4f4d Disable test:redox for now 1 éve
.gitmodules 2186cd1fbd Implement fexec in userspace. 2 éve
CONTRIBUTING.md ff874c87d7 tests: Fix function signatures 5 éve
Cargo.lock 691200021c Add sys_dup and sys_dup2 support (#2) 1 éve
Cargo.toml 691200021c Add sys_dup and sys_dup2 support (#2) 1 éve
LICENSE ba515d83df Create LICENSE 6 éve
Makefile 39989b488c 适配dragonos 1 éve
README.md 39989b488c 适配dragonos 1 éve
Xargo.toml ae34ade595 Use path to patch compiler-builtins 4 éve
bindgen_transform.sh 799c8828c2 mkdir and rmdir 6 éve
build.rs e159490fc6 为dragonos进行配置(目前内存分配器无法创建memspace 1 éve
ci.sh 9f86748a58 Fix make libs in CI 4 éve
fmt.sh bab4e2896a Format 6 éve
init_dragonos_toolchain.sh bfe7a7f316 malloc with error 1 éve
redoxer.sh 903393574e redoxer.sh will clear build-std from CARGOFLAGS 1 éve
renamesyms.sh 70a8fca3c1 Use target binutils for renamesyms 2 éve
rust-toolchain.toml 0bd476d28a Update to new Rust toolchain 1 éve
rustfmt.toml b8c50c7c64 Format 5 éve

README.md

relibc build

relibc is a portable POSIX C standard library written in Rust. It is under heavy development, and currently supports Redox, Linux and DragonOS.

The motivation for this project is twofold: Reduce issues the redox crew was having with newlib, and create a safer alternative to a C standard library written in C. It is mainly designed to be used under redox, as an alternative to newlib, but it also supports linux syscalls via the sc crate.

Building

Just run make all.

Build for DragonOS

You can follow the instructions to build relibc for DragonOS:

mkdir -p sysroot/usr
make -j $(nproc) && DESTDIR=sysroot/usr make install -j $(nproc)

Issues

I'm building for my own platform which I run, and am getting x86_64-linux-gnu-ar: command not found (or similar)

The Makefile expects the gnu compiler tools prefixed with the platform specifier, as would be present when you'd install a cross compiler. Since you are building for your own platform, some distros (like Manjaro) don't install/symlink the prefixed executables. An easy fix would be to replace the corresponding lines in the Makefile, e.g.

 ifeq ($(TARGET),x86_64-unknown-linux-gnu)
        export CC=x86_64-linux-gnu-gcc
-       export LD=x86_64-linux-gnu-ld
-       export AR=x86_64-linux-gnu-ar
+       export LD=ld
+       export AR=ar
        export OBJCOPY=x86_64-linux-gnu-objcopy
 endif

Contributing

Supported OSes

  • Redox OS
  • Linux
  • DragonOS

Supported architectures

  • x86_64
  • Aarch64