mirror of
https://github.com/brmlab/kalibrate-rtl.git
synced 2025-08-01 05:33:42 +02:00
disable shared memory on ARM hosts
Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
parent
71e9543fce
commit
40ae519271
2 changed files with 7 additions and 1 deletions
|
@ -38,6 +38,12 @@ case "$host_os" in
|
|||
;;
|
||||
esac
|
||||
|
||||
case "$host_cpu" in
|
||||
arm*)
|
||||
AC_DEFINE([D_HOST_OSX], [], [building without shared memory])
|
||||
;;
|
||||
esac
|
||||
|
||||
AC_CONFIG_FILES([Makefile
|
||||
src/Makefile])
|
||||
AC_OUTPUT
|
||||
|
|
|
@ -20,4 +20,4 @@ kal_SOURCES = \
|
|||
version.h
|
||||
|
||||
kal_CXXFLAGS = $(FFTW3_CFLAGS) $(LIBRTLSDR_CFLAGS)
|
||||
kal_LDADD = $(FFTW3_LIBS) $(LIBRTLSDR_LIBS)
|
||||
kal_LDADD = $(FFTW3_LIBS) $(LIBRTLSDR_LIBS) -lrt
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue