f4cd8ceb9c
Compact casesi patterns don't have a reload version. This causes build failures of "trousers" package for ARC. Current patch disables compact casesi patterns for ARCv1 (750D and 770D) via passing "-mno-compact-casesi" option when compiling "trousers". This change is a temporary workaround and the feature is going to be fixed in the next ARC toolchain release version. Fixes: http://autobuild.buildroot.org/results/d2c/d2c16d8ba022b070c4dbeba5e7ea41f14d706691// Signed-off-by: Vlad Zakharov <vzakhar@synopsys.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
#############################################################
|
|
#
|
|
# trousers
|
|
#
|
|
##############################################################
|
|
|
|
TROUSERS_VERSION = 0.3.13
|
|
TROUSERS_SOURCE = trousers-$(TROUSERS_VERSION).tar.gz
|
|
TROUSERS_SITE = http://downloads.sourceforge.net/project/trousers/trousers/$(TROUSERS_VERSION)
|
|
TROUSERS_LICENSE = BSD-3c
|
|
TROUSERS_LICENSE_FILES = LICENSE
|
|
TROUSERS_INSTALL_STAGING = YES
|
|
# Need autoreconf because of a patch touching configure.in and Makefile.am
|
|
TROUSERS_AUTORECONF = YES
|
|
TROUSERS_DEPENDENCIES = host-pkgconf openssl
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
TROUSERS_DEPENDENCIES += libiconv
|
|
endif
|
|
|
|
ifeq ($(BR2_arc770d)$(BR2_arc750d),y)
|
|
TROUSERS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -mno-compact-casesi"
|
|
endif
|
|
|
|
# The TrouSerS build system attempts to create the tss user and group
|
|
# on the host system. Disable the user checking feature as a
|
|
# workaround.
|
|
TROUSERS_CONF_OPTS += --disable-usercheck
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_SUPPORTS_PIE),)
|
|
TROUSERS_CONF_ENV += \
|
|
ax_cv_check_cflags___fPIE__DPIE=no \
|
|
ax_cv_check_ldflags___pie=no
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|