mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +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.
11 lines
290 B
Plaintext
11 lines
290 B
Plaintext
LICENSE := MIT
|
|
VERSION := nightly
|
|
DATE := 2016-03-03
|
|
DOWNLOADS := rust.archive
|
|
|
|
URL(rust) := http://static.rust-lang.org/dist/$(DATE)/rustc-$(VERSION)-src.tar.gz
|
|
SHA(rust) := c75656f1238ce82e1cdede174d9cbc05f0b98ae2
|
|
DIR(rust) := src/lib/rust
|
|
|
|
PATCHES := src/lib/rust/freebsd.patch
|