From af28b78b8e659f995b39a5dde2ce2cef0da9fbe0 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 6 Apr 2021 14:09:59 -0500 Subject: Add chapter8 script commands. --- chapter8/ninja.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'chapter8/ninja.sh') diff --git a/chapter8/ninja.sh b/chapter8/ninja.sh index 7a693aa..3f93e56 100644 --- a/chapter8/ninja.sh +++ b/chapter8/ninja.sh @@ -1,3 +1,16 @@ #!/bin/bash +export NINJAJOBS=4 +sed -i '/int Guess/a \ + int j = 0;\ + char* jobs = getenv( "NINJAJOBS" );\ + if ( jobs != NULL ) j = atoi( jobs );\ + if ( j > 0 ) return j;\ +' src/ninja.cc + +python3 configure.py --bootstrap + +install -vm755 ninja /usr/bin/ +install -vDm644 misc/bash-completion /usr/share/bash-completion/completions/ninja +install -vDm644 misc/zsh-completion /usr/share/zsh/site-functions/_ninja -- cgit v1.2.3-54-g00ecf