You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
577 B
20 lines
577 B
4 years ago
|
################################################################################
|
||
|
#
|
||
|
# libffi
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
LIBFFI_VERSION = 3.3
|
||
|
LIBFFI_DIR = libffi-$(LIBFFI_VERSION)
|
||
|
LIBFFI_SOURCE = libffi-$(LIBFFI_VERSION).tar.gz
|
||
|
LIBFFI_SITE = https://github.com/libffi/libffi/releases/download/v$(HOST_LIBFFI_VERSION)
|
||
|
|
||
|
LIBFFI_AUTORECONF = YES
|
||
|
|
||
|
LIBFFI_CONF_OPTS = \
|
||
|
--datarootdir=$(REMOVE_datarootdir) \
|
||
|
$(if $(filter $(BOXSERIES),hd1),--enable-static --disable-shared)
|
||
|
|
||
|
libffi: | $(TARGET_DIR)
|
||
|
$(call autotools-package)
|