From 019b43338fada830735604bc9cb77f0a4698a59c Mon Sep 17 00:00:00 2001 From: Federico Amedeo Izzo Date: Tue, 20 Oct 2020 13:42:17 +0200 Subject: [PATCH] Fix compile instructions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c0379d3c..c032a020 100644 --- a/README.md +++ b/README.md @@ -30,14 +30,14 @@ The firmware can be compiled with: ``` meson setup build_linux -meson compile -C build_linux openrtx-linux +meson compile -C build_linux openrtx_linux ``` If you are using a version of Meson older than v0.55.0, the above command will fail, compile with: ``` meson setup build_linux -ninja -C build_linux openrtx-linux -jN +ninja -C build_linux openrtx_linux.bin -jN ``` Where N is the number of cores that you want to allocate to the build process.