]> sigrok.org Git - sigrok-build.git/commitdiff
Add sigrok-firmware to the dependency build script for MXE
authorFrank Stettner <redacted>
Sun, 26 Mar 2023 15:17:03 +0000 (17:17 +0200)
committerFrank Stettner <redacted>
Sun, 26 Mar 2023 15:25:53 +0000 (17:25 +0200)
.github/workflows/pulseview_mxe.yml
ci/sigrok-mxe-build-dependencies.sh

index ec116705b79307daf566316ee67a4156e5cc7860..6a3acb946052a6cbb14682f53cc99647c633a25f 100644 (file)
@@ -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
index cf51751ac8c49a35c7412542d7217a403dda2c88..a38f3d6e7817c67cc15758902e0b1b4f3ba60619 100755 (executable)
@@ -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 ..