Skip to content

Commit 7e86403

Browse files
authored
Merge pull request #90 from mikeller/fix_cicd
2 parents 4e4f1f7 + 847d6c3 commit 7e86403

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323
- name: Install dependencies
24-
run: sudo apt-get install libbluetooth-dev libusb-1.0-0-dev
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install libbluetooth-dev libusb-1.0-0-dev
2527
- run: autoreconf --install --force
2628
- run: ./configure --prefix=/usr
2729
- run: make

configure.ac

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,11 @@ AS_IF([test "$platform" = "windows"], [
217217
AX_APPEND_COMPILE_FLAGS([-Wno-pedantic-ms-format])
218218
])
219219

220+
# macOS specific compiler options.
221+
AS_IF([test "$platform" = "mac"], [
222+
AX_APPEND_COMPILE_FLAGS([-Wl,-not_for_dyld_shared_cache])
223+
])
224+
220225
# Versioning.
221226
AC_SUBST([DC_VERSION],[dc_version])
222227
AC_SUBST([DC_VERSION_MAJOR],[dc_version_major])

0 commit comments

Comments
 (0)