Finally a working toolchain?
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
apio 2023-08-15 15:40:44 +02:00
parent 6761b3fcaf
commit 1e68ac7312
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -1,12 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -e set -e
if ! $(dirname $0)/test-autoconf.sh
then
echo Building autoconf...
$(dirname $0)/setup-autoconf.sh
fi
if ! $(dirname $0)/test-binutils.sh if ! $(dirname $0)/test-binutils.sh
then then
echo Building Binutils... echo Building Binutils...
@ -15,6 +9,12 @@ fi
if ! $(dirname $0)/test-gcc.sh if ! $(dirname $0)/test-gcc.sh
then then
if ! $(dirname $0)/test-autoconf.sh
then
echo Building autoconf...
$(dirname $0)/setup-autoconf.sh
fi
echo Building GCC.. echo Building GCC..
$(dirname $0)/setup-gcc.sh $(dirname $0)/setup-gcc.sh
fi fi