From 139d2fbd700ac98daa05f0ec9027467ba1dd974a Mon Sep 17 00:00:00 2001 From: Alex Kladov Date: Fri, 25 Aug 2023 13:07:38 +0100 Subject: [PATCH] Add copy-pastable build instructions The main value here is to put `CMAKE_GENERATOR=Ninja` front-and-center, so that users realize that extra steps are needed for a parallel build. It _is_ documented quite clearly already, but, from my very personal experience: * people don't read the docs and spend hours hammering one poor core * even if people do read the docs, when the come back to the repo the second time around, they forget, and hammer that single poor core _again_ :-) --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 5d62df55a8..71739df01e 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,15 @@ For other versions, check the git tags of this repository. ## Build Instructions +TL;DR: + +``` +CMAKE_GENERATOR=Ninja ./build x86_64-linux-gnu baseline +./out/zig-x86_64-linux-gnu-baseline/zig version +``` + +## UNIX Build Instructions + ``` ./build -- ```