Skip to content
Michael Forney edited this page Jan 26, 2020 · 3 revisions

SAMU(1) - General Commands Manual

NAME

samu - ninja-compatible build tool

SYNOPSIS

samu [-C dir] [-d debugflag] [-f buildfile] [-j maxjobs] [-k maxfail] [-w warnflag=action] [-v] [target...]
samu [-C dir] [-f buildfile] -t clean [-gr] [target...]
samu [-C dir] [-f buildfile] -t compdb [-x] [rule...]

DESCRIPTION

samu loads a build manifest from buildfile and rebuilds targets if they are out of date. If no targets are specified, the manifest's default targets are built. If there are no default targets, the leaf nodes of the dependency graph are built (outputs that have no consuming action).

Targets are out of date if they are older than the generating action's newest input, they have no entry in the build log, or if the command to build the target differs from what was used previously. Targets built with generator rules are not rebuilt if the command changes.

If the clean tool is used, the targets are cleaned instead. When a target is cleaned, it is removed and are all of its inputs are cleaned. Targets with no generating actions are never removed. Targets built with generator rules are only removed if -g is specified.

If the compdb tool is used, a compilation database (https://clang.llvm.org/docs/JSONCompilationDatabase.html) is printed instead.

OPTIONS

-C

Switch working directory to dir before building.

-d

Enable a debugging option. This flag may be specified multiple times to enable multiple debugging options. Possible values for debugflag are:

explain

Print messages explaining why outputs were dirty.

keepdepfile

Don't remove $depfile after it was parsed.

keeprsp

Don't remove $rspfile after job completion or failure.

-f

Load manifest from buildfile instead of build.ninja.

-j

Run up to maxjobs jobs in parallel (default based on number of CPUs). If zero, allow unlimited concurrent jobs.

-k

Allow up to maxfail job failures. If negative or zero, allow any number of job failures.

-v

Print full commands instead of just description.

-w

Control how certain errors are handled. If warnflag is dupbuild, action specifies what to do if an output is listed in multiple build edges. If action is err, treat it like an error and fail. If action is warn, only print a diagnostic message.

-t

Instead of building, invoke a subtool. All arguments and flags after the subtool are interpreted by the subtool. The currently supported subtools are clean and compdb.

-g

When cleaning, also clean outputs of generator actions.

-r

targets are interpreted as rules, and all outputs of actions with the specified rule types will be cleaned instead.

-x

When printing a compilation database, replace @$rspfile with $rspfile_content (with <blank> in place of <newline>).

ENVIRONMENT

SAMUFLAGS

Options for samu that get applied before those specified on the command-line. The only options allowed in SAMUFLAGS are -v and -j.

NINJA_STATUS

The status output printed to the left of each rule description, using printf-like conversion specifiers. If unset, the default is "[%s/%t] ".

Available conversion specifiers:

%s

Number of started jobs.

%f

Number of finished jobs.

%t

Total number of jobs.

%r

Number of running jobs.

%u

Number of remaining jobs.

%p

Percentage of completed jobs.

%e

Elapsed time in seconds (to 3 decimal places).

%%

The '%' character.

SEE ALSO

make(1)

January 26, 2020

Clone this wiki locally