mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-19 11:16:57 +00:00
1e95af5bab
Now rlibs are actually linked to programs. Target files have been modified to not generate code that requires compiler-rt. Added a target for libstd-rust, but it's very broken right now. Moved alloc_system to the libports folder because either a memory allocator needs to be written in rust or posix_memalign needs to be implemented. Changed liblibc to use freebsd as the OS instead of netbsd. Added a library with unwind dummy functions. Rust relies on atomic builtins, which are not implemented in libgcc for ARM. One was implemented in rust, which was sufficient to get the current rust test to run. Rust libs were added into the group of libs for the linker so order no longer matters. The raspberry pi now uses an armv6 target. |
||
---|---|---|
.. | ||
etc | ||
include | ||
lib | ||
mk | ||
run | ||
src | ||
README |
This is generic part of the Genode implementation. It consists of two parts: :_Core_: is the ultimate root of the Genode application tree and provides abstractions for the lowest-level hardware resources such as RAM, ROM, CPU, and generic device access. All generic parts of Core can be found here - for system-specific implementations refer to the appropriate 'base-<system>' directory. :_Base libraries and protocols_: that are used by each Genode component to interact with other components. This is the glue that holds everything together.