mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-22 07:14:56 -09:00
https://github.com/libffi/libffi/releases/tag/v3.8.0 Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
24 lines
734 B
Makefile
24 lines
734 B
Makefile
################################################################################
|
|
#
|
|
# libffi
|
|
#
|
|
################################################################################
|
|
|
|
LIBFFI_VERSION = 3.8.0
|
|
LIBFFI_SITE = \
|
|
https://github.com/libffi/libffi/releases/download/v$(LIBFFI_VERSION)
|
|
LIBFFI_LICENSE = MIT
|
|
LIBFFI_LICENSE_FILES = LICENSE
|
|
LIBFFI_CPE_ID_VALID = YES
|
|
LIBFFI_INSTALL_STAGING = YES
|
|
# We're patching configure.ac
|
|
LIBFFI_AUTORECONF = YES
|
|
LIBFFI_CONF_OPTS = --disable-multi-os-directory
|
|
|
|
# The static exec trampolines is enabled by default since
|
|
# libffi 3.4.2. However it doesn't work with gobject-introspection.
|
|
LIBFFI_CONF_OPTS += --disable-exec-static-tramp
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|