From 973cbd33388a5505a60ea1b70bbfd8b5c74c9c1e Mon Sep 17 00:00:00 2001 From: hathach Date: Wed, 28 Aug 2024 14:24:50 +0700 Subject: [PATCH] enable i386 arch for running rx-gcc --- .circleci/config2.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config2.yml b/.circleci/config2.yml index 70b5c60ac..e076baeb7 100644 --- a/.circleci/config2.yml +++ b/.circleci/config2.yml @@ -42,6 +42,10 @@ commands: if [[ << parameters.toolchain >> == rx-gcc ]]; then mv toolchain.tar.gz toolchain.run chmod +x toolchain.run + # rx-gcc is i386 binary + sudo dpkg --add-architecture i386 + sudo apt update + sudo apt install libc6:i386 libncurses5:i386 libstdc++6:i386 ./toolchain.run -p ~/cache/<< parameters.toolchain >>/gnurx -y else tar -C ~/cache/<< parameters.toolchain >> -xaf toolchain.tar.gz