aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2021-12-13 13:35:35 -0800
committerTim Newsome <tim@sifive.com>2021-12-13 13:36:06 -0800
commitf3c69c7292d6e09a53050881976c1c9403f04254 (patch)
tree54a9bb7a731f31260096b6037a5e0bad90c5c163 /.github
parentdeab0f463823b5795b251dbc31649ef70603fb94 (diff)
downloadriscv-openocd-f3c69c7292d6e09a53050881976c1c9403f04254.zip
riscv-openocd-f3c69c7292d6e09a53050881976c1c9403f04254.tar.gz
riscv-openocd-f3c69c7292d6e09a53050881976c1c9403f04254.tar.bz2
Don't use oscan1 on 32-bit build.
It requires libusb, and I'm not off-hand seeing a 32-bit libusb to link with. Change-Id: Ib676982b9c17369326ffc63eab5ef895add48569 Signed-off-by: Tim Newsome <tim@sifive.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux-build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml
index 15f923a..74028d5 100644
--- a/.github/workflows/linux-build.yml
+++ b/.github/workflows/linux-build.yml
@@ -12,9 +12,9 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v2
- - run: sudo apt-get install clang gcc-multilib libusb-1.0-0 libusb-1.0-0-dev
+ - run: sudo apt-get install clang gcc-multilib
- run: ./bootstrap
- - run: ./configure --enable-remote-bitbang --enable-jtag_vpi --disable-target64 --enable-ftdi-oscan1
+ - run: ./configure --enable-remote-bitbang --enable-jtag_vpi --disable-target64
- run: make
- run: file src/openocd | grep 32-bit