diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2022-10-18 11:22:50 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2022-10-20 16:05:11 +0200 |
commit | 4903a08b097d71e850c264b0402916ab749fb0ae (patch) | |
tree | 49850a88b293c62cc054b9a2e0c9b3d763e9a1bf /INSTALL.md | |
parent | 5c42a6d94edaf54f8343303b47a9187280cb1133 (diff) | |
download | justbuild-4903a08b097d71e850c264b0402916ab749fb0ae.tar.gz |
Install: Simplify building instructions
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,10 +1,9 @@ # Installing the `just` binary -## Building `just` using an older version of `just` +## Building `just` using an older version of `just-mr` and `just` ```sh -CONF=$(./bin/just-mr.py -C etc/repos.json setup just) -just build -C $CONF +just-mr build ``` This will build `just` for Linux on the x86_64 architecture with a dynamic link @@ -17,8 +16,7 @@ installed and working properly. For example, to build `just` for 64 bit ARM, specify `arm64` as the target architecture via the `-D` flag: ```sh -CONF=$(./bin/just-mr.py -C etc/repos.json setup just) -just build -C $CONF -D '{"TARGET_ARCH":"arm64"}' +just-mr build -D '{"TARGET_ARCH":"arm64"}' ``` A complete list of variables honored by our build rules is provided in the |