Skip to content

Commit 4e8033e

Browse files
committed
Install jimtcl for openocd
1 parent a38e1d1 commit 4e8033e

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ if (-not $SkipDownload) {
208208
# Normal update
209209
msys 'pacman --noconfirm -Suu'
210210

211-
msys "pacman -S --noconfirm --needed autoconf automake base-devel expat git libtool pactoys patchutils pkg-config"
211+
msys "pacman -S --noconfirm --needed autoconf automake base-devel expat git libtool pactoys patchutils pkg-config libjim"
212212
# pacboy adds MINGW_PACKAGE_PREFIX to package names suffixed with :p
213213
msys "pacboy -S --noconfirm --needed cmake:p ninja:p toolchain:p libusb:p hidapi:p libslirp:p"
214214
}

build_linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SKIP_RISCV=${SKIP_RISCV-0}
77
SKIP_OPENOCD=${SKIP_OPENOCD-0}
88

99
# Install prerequisites
10-
sudo apt install -y jq cmake libtool automake libusb-1.0-0-dev libhidapi-dev libftdi1-dev
10+
sudo apt install -y jq cmake libtool automake libusb-1.0-0-dev libhidapi-dev libftdi1-dev libjim-dev
1111
# RISC-V prerequisites
1212
sudo apt install -y autoconf automake autotools-dev curl python3 python3-pip libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev ninja-build git cmake libglib2.0-dev libslirp-dev
1313
# RPi Only prerequisites

build_macos.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ SKIP_RISCV=${SKIP_RISCV-0}
77
SKIP_OPENOCD=${SKIP_OPENOCD-0}
88

99
# Install prerequisites
10-
arch -x86_64 /usr/local/bin/brew install jq libtool libusb automake hidapi --quiet
11-
arch -arm64 /opt/homebrew/bin/brew install jq libtool libusb automake hidapi --quiet
10+
arch -x86_64 /usr/local/bin/brew install jq libtool libusb automake hidapi jimtcl --quiet
11+
arch -arm64 /opt/homebrew/bin/brew install jq libtool libusb automake hidapi jimtcl --quiet
1212
# RISC-V prerequisites
1313
echo "Listing local"
1414
ls /usr/local/bin

packages/windows/openocd/build-openocd.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ BUILDDIR=$(pwd)
66
INSTALLDIR="openocd-install"
77

88
cd openocd
9+
10+
cd jimtcl
11+
./configure
12+
make
13+
sudo make install
14+
cd ..
15+
916
./bootstrap
1017
./configure --disable-werror
1118
make clean

0 commit comments

Comments
 (0)