File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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.
221226AC_SUBST ( [ DC_VERSION] ,[ dc_version] )
222227AC_SUBST ( [ DC_VERSION_MAJOR] ,[ dc_version_major] )
You can’t perform that action at this time.
0 commit comments