From: Frank Stettner Date: Sun, 26 Mar 2023 15:17:03 +0000 (+0200) Subject: Add sigrok-firmware to the dependency build script for MXE X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=71bf24beb775315ad213ee7bf71d02a89e6dc314;p=sigrok-build.git Add sigrok-firmware to the dependency build script for MXE --- diff --git a/.github/workflows/pulseview_mxe.yml b/.github/workflows/pulseview_mxe.yml index ec11670..6a3acb9 100644 --- a/.github/workflows/pulseview_mxe.yml +++ b/.github/workflows/pulseview_mxe.yml @@ -19,6 +19,8 @@ env: LIBSIGROK_BRANCH: "master" # Git URL for the libsigrokdecode dependency LIBSIGROKDECODE_REPO: "git://sigrok.org/libsigrokdecode" + # Git URL for the sigrok-firmware dependency + SIGROK_FIRMWARE_REPO: "git://sigrok.org/sigrok-firmware" # Build type for PulseView (Debug, Release, RelWithDebInfo, MinSizeRel) BUILD_TYPE: "Release" # Misc commands diff --git a/ci/sigrok-mxe-build-dependencies.sh b/ci/sigrok-mxe-build-dependencies.sh index cf51751..a38f3d6 100755 --- a/ci/sigrok-mxe-build-dependencies.sh +++ b/ci/sigrok-mxe-build-dependencies.sh @@ -110,3 +110,11 @@ make $PARALLEL $V make install $V cd .. +# sigrok-firmware +$GIT_CLONE $SIGROK_FIRMWARE_REPO sigrok-firmware +cd sigrok-firmware +./autogen.sh +./configure $C $L +make $PARALLEL $V +make install $V +cd ..