855bb15aa1
Even though ARC gcc understands "-pie" option and attempts to generate PIE binaries as of today PIE is not really supported for user-space applications. So we disable PIE detection if building for ARC. That fixes http://autobuild.buildroot.net/results/be4/be46b621ce5443788b0a1bc9fab614c4ca5d0859 and also prevents execution of non-supported PIE binary in runtime. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
483 B
Makefile
18 lines
483 B
Makefile
################################################################################
|
|
#
|
|
# libsodium
|
|
#
|
|
################################################################################
|
|
|
|
LIBSODIUM_VERSION = 1.0.3
|
|
LIBSODIUM_SITE = https://github.com/jedisct1/libsodium/releases/download/$(LIBSODIUM_VERSION)
|
|
LIBSODIUM_LICENSE = ISC
|
|
LIBSODIUM_LICENSE_FILES = LICENSE
|
|
LIBSODIUM_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_arc),y)
|
|
LIBSODIUM_CONF_OPTS += --disable-pie
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|