bootstrap-toolchain/tests/1/build.ninja

11 lines
227 B
Plaintext

cxxflags = -Wall -fuse-ld=lld --sysroot /sysroot
rule cc
command = clang++ $cxxflags -c $in -o $out
rule static-cc
command = clang++ $cxxflags -c $in -o $out
build main: cc main.cpp
build main-static: static-cc main.cpp