From 8f3b794f7f21046bf3d74b29059036e90b08ba5a Mon Sep 17 00:00:00 2001 From: diyelectromusic <68612569+diyelectromusic@users.noreply.github.com> Date: Tue, 4 Apr 2023 18:39:14 +0100 Subject: [PATCH] Fix for issue #424 create a build script to check out the correct versions of sub libraries. --- submod.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 submod.sh diff --git a/submod.sh b/submod.sh new file mode 100755 index 0000000..e941660 --- /dev/null +++ b/submod.sh @@ -0,0 +1,13 @@ +#!/bin/bash +set -ex +git submodule update --init --recursive +cd circle-stdlib/ +git checkout e318f89 # Needed to support Circle develop? +cd - +cd circle-stdlib/libs/circle +git checkout ec09d7e # develop +cd - +cd circle-stdlib/libs/circle-newlib +git checkout 48bf91d # needed for circle ec09d7e +cd - +