91f746c728
The GCC manual suggest when getting: relocation truncated to fit: R_68K_GOT16O foobar to use -mxgot. https://gcc.gnu.org/onlinedocs/gcc/M680x0-Options.html Fixes: http://autobuild.buildroot.net/results/63898c00929b4546279bda52148b218f847714ed/ http://autobuild.buildroot.net/results/bb7a107d1ca6e8713e6ccffe6c61c43b777fb962/ Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
598 B
Makefile
22 lines
598 B
Makefile
################################################################################
|
|
#
|
|
# assimp
|
|
#
|
|
################################################################################
|
|
|
|
ASSIMP_VERSION = v3.2
|
|
ASSIMP_SITE = $(call github,assimp,assimp,$(ASSIMP_VERSION))
|
|
ASSIMP_LICENSE = BSD-3c
|
|
ASSIMP_LICENSE_FILES = LICENSE
|
|
ASSIMP_DEPENDENCIES = zlib
|
|
ASSIMP_INSTALL_STAGING = YES
|
|
|
|
# relocation truncated to fit: R_68K_GOT16O
|
|
ifeq ($(BR2_m68k),y)
|
|
ASSIMP_CXXFLAGS += -mxgot
|
|
endif
|
|
|
|
ASSIMP_CONF_OPTS += -DASSIMP_BUILD_TESTS=OFF -DCMAKE_CXX_FLAGS="$(TARGET_CXXFLAGS) $(ASSIMP_CXXFLAGS)"
|
|
|
|
$(eval $(cmake-package))
|