diff options
author | Greg V <greg@unrelenting.technology> | 2018-06-27 18:12:00 +0300 |
---|---|---|
committer | Greg V <greg@unrelenting.technology> | 2018-06-27 18:12:00 +0300 |
commit | 44262d8ce69f28c3b691131c4fb5e8824563053e (patch) | |
tree | 0dc1a5b54254cbece789de86e6223cc09d25b255 | |
parent | 062cab58c19acb844375ea26fb3eb5841ad65545 (diff) | |
download | mrust-44262d8ce69f28c3b691131c4fb5e8824563053e.tar.gz |
Document *BSD build command in readme
-rw-r--r-- | README.md | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -37,6 +37,15 @@ Linux - `make -f minicargo.mk` - Builds `mrustc` and `minicargo`, then builds `libstd`, `libtest`, finally `rustc` and `cargo` - `make -C run_rustc` - Build libstd and a "hello, world" using the above-built rustc +BSD +--- +Similar to Linux, but you might need to +- specify the rustc default target explicitly +- specify the compiler +- use `gmake` to run GNU make + +e.g. `gmake CC=cc RUSTC_TARGET=x86_64-unknown-freebsd -f minicargo.mk` + Windows -------- (NOTE: Incomplete, doesn't yet compile executables and missing helper scripts) |