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 21
21
steps :
22
22
- uses : actions/checkout@v4
23
23
- 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
25
27
- run : autoreconf --install --force
26
28
- run : ./configure --prefix=/usr
27
29
- run : make
Original file line number Diff line number Diff line change @@ -217,6 +217,11 @@ AS_IF([test "$platform" = "windows"], [
217
217
AX_APPEND_COMPILE_FLAGS ( [ -Wno-pedantic-ms-format] )
218
218
] )
219
219
220
+ # macOS specific compiler options.
221
+ AS_IF ( [ test "$platform" = "mac"] , [
222
+ AX_APPEND_COMPILE_FLAGS ( [ -Wl,-not_for_dyld_shared_cache] )
223
+ ] )
224
+
220
225
# Versioning.
221
226
AC_SUBST ( [ DC_VERSION] ,[ dc_version] )
222
227
AC_SUBST ( [ DC_VERSION_MAJOR] ,[ dc_version_major] )
You can’t perform that action at this time.
0 commit comments