26a16ed9d8
Switch to autotools-package to avoid the following static build failure
since commit d661740201
:
[ 56%] Linking C executable rtl_biast
/home/peko/autobuild/instance-1/output-1/host/opt/ext-toolchain/bin/../lib/gcc/riscv64-buildroot-linux-musl/10.3.0/../../../../riscv64-buildroot-linux-musl/bin/ld: attempted static link of dynamic object `/home/peko/autobuild/instance-1/output-1/host/riscv64-buildroot-linux-musl/sysroot/lib/libatomic.so'
collect2: error: ld returned 1 exit status
Drop both cmake-related patches
Fixes:
- http://autobuild.buildroot.org/results/cf84759682848db8ed5610e1abe5a92337d0e957
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
34 lines
964 B
Makefile
34 lines
964 B
Makefile
################################################################################
|
|
#
|
|
# librtlsdr
|
|
#
|
|
################################################################################
|
|
|
|
LIBRTLSDR_VERSION = ed0317e6a58c098874ac58b769cf2e609c18d9a5
|
|
LIBRTLSDR_SITE = $(call github,steve-m,librtlsdr,$(LIBRTLSDR_VERSION))
|
|
LIBRTLSDR_LICENSE = GPL-2.0+
|
|
LIBRTLSDR_LICENSE_FILES = COPYING
|
|
LIBRTLSDR_INSTALL_STAGING = YES
|
|
# From git
|
|
LIBRTLSDR_AUTORECONF = YES
|
|
LIBRTLSDR_DEPENDENCIES = host-pkgconf libusb
|
|
LIBRTLSDR_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) install
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
|
LIBRTLSDR_INSTALL_TARGET_OPTS += install-udev-rules
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBRTLSDR_DETACH_DRIVER),y)
|
|
LIBRTLSDR_CONF_OPTS += --enable-driver-detach
|
|
else
|
|
LIBRTLSDR_CONF_OPTS += --disable-driver-detach
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBRTLSDR_ZEROCOPY),y)
|
|
LIBRTLSDR_CONF_OPTS += --enable-zerocopy
|
|
else
|
|
LIBRTLSDR_CONF_OPTS += --disable-zerocopy
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|