diff options
| author | Waldemar Brodkorb <wbx@openadk.org> | 2016-07-31 20:07:43 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-08-01 23:03:56 +0200 |
| commit | 91f746c728222d91d25879b0a6f04b3ff7e18027 (patch) | |
| tree | b50d0edfdab24ed93df4249ce7235f28c8a5e4ba /package/assimp | |
| parent | 7d0607253c5754b4aaf9abcb882076b2b8ee15ed (diff) | |
| download | buildroot-91f746c728222d91d25879b0a6f04b3ff7e18027.tar.gz buildroot-91f746c728222d91d25879b0a6f04b3ff7e18027.zip | |
assimp: fix m68k uclinux compile
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>
Diffstat (limited to 'package/assimp')
| -rw-r--r-- | package/assimp/assimp.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/assimp/assimp.mk b/package/assimp/assimp.mk index fd556e5962..cda02dda59 100644 --- a/package/assimp/assimp.mk +++ b/package/assimp/assimp.mk @@ -11,6 +11,11 @@ ASSIMP_LICENSE_FILES = LICENSE ASSIMP_DEPENDENCIES = zlib ASSIMP_INSTALL_STAGING = YES -ASSIMP_CONF_OPTS += -DASSIMP_BUILD_TESTS=OFF +# 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)) |

