Turns out I'd cocked up the build system setup --- bootstrap with make again.

This commit is contained in:
David Given
2019-07-04 11:12:17 +02:00
parent b78ccfe887
commit fe8122afcc
6 changed files with 15 additions and 28 deletions

View File

@@ -5,19 +5,6 @@ pkgcflags="$(pkg-config --cflags $packages) -Idep/fmt"
pkgldflags=$(pkg-config --libs $packages)
cat <<-EOF
#############################################################################
### THIS FILE IS AUTOGENERATED ###
#############################################################################
#
# Don't edit it. Your changes will be destroyed. Instead, edit mkninja.sh
# instead. The next time you run ninja, this file will be automatically
# updated.
rule mkninja
command = sh ./mkninja.sh > \$out.new && mv -f \$out.new \$out
generator = true
build build.ninja : mkninja mkninja.sh
CXX = g++
AR = ar rcs
CFLAGS = -Og -g --std=c++14