From c4bb61e3b920c413673b51c78f273a8c7919e59b Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Wed, 26 Feb 2020 07:52:20 +0100 Subject: [PATCH] Build with KLH10 on FreeBSD. --- .cirrus.yml | 2 +- build/dependencies.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index d16b4beb..43b7d26d 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -9,7 +9,7 @@ task: env: matrix: - EMULATOR: simh - # EMULATOR: klh10 + - EMULATOR: klh10 - EMULATOR: pdp10-ka # EMULATOR: pdp10-kl install_script: sh -ex build/dependencies.sh install_freebsd diff --git a/build/dependencies.sh b/build/dependencies.sh index 3f45631c..ee995d2e 100644 --- a/build/dependencies.sh +++ b/build/dependencies.sh @@ -24,6 +24,7 @@ install_freebsd() { case "$EMULATOR" in pdp10-ka) pkg install -y sdl2 sdl2_image pkgconf;; pdp10-kl) pkg install -y autoconf;; + klh10) pkg install -y pkgconf autotools;; esac }