ba7319a06e
Fix the following build failure raised since the addition of the package
in commit 18a8630637
:
/home/giuliobenetti/autobuild/run/instance-0/output-1/host/opt/ext-toolchain/bin/../lib/gcc/riscv64-buildroot-linux-musl/10.3.0/../../../../riscv64-buildroot-linux-musl/bin/ld: libzynaddsubfx_core.a(Master.cpp.o): in function `.L1880':
Master.cpp:(.text+0x7cc0): undefined reference to `__atomic_exchange_1'
Fixes:
- http://autobuild.buildroot.org/results/91b5959ca0eb136c1609462e71d109ff09cca5e5
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
28 lines
733 B
Makefile
28 lines
733 B
Makefile
################################################################################
|
|
#
|
|
# zynaddsubfx
|
|
#
|
|
################################################################################
|
|
|
|
ZYNADDSUBFX_VERSION = 3.0.6
|
|
ZYNADDSUBFX_SOURCE = zynaddsubfx-$(ZYNADDSUBFX_VERSION).tar.bz2
|
|
ZYNADDSUBFX_SITE = http://downloads.sourceforge.net/zynaddsubfx
|
|
ZYNADDSUBFX_LICENSE = GPL-2.0+
|
|
ZYNADDSUBFX_LICENSE_FILES = COPYING
|
|
|
|
# There is no package in buildroot using LV2 plugins: disabling
|
|
ZYNADDSUBFX_CONF_OPTS = -DCompileTests=OFF -DPluginEnable=OFF
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
ZYNADDSUBFX_CONF_OPTS += -DOS_LIBRARIES=-latomic
|
|
endif
|
|
|
|
ZYNADDSUBFX_DEPENDENCIES = \
|
|
alsa-lib \
|
|
fftw-single \
|
|
liblo \
|
|
mxml \
|
|
zlib
|
|
|
|
$(eval $(cmake-package))
|