Skip to content
Snippets Groups Projects
Commit 730c582d authored by Rosen Penev's avatar Rosen Penev
Browse files

libjpeg-turbo: fix compilation without NEON


Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
parent bdb017dd
No related branches found
No related tags found
1 merge request!13Uplift of packages using two step method. Use commits specified by feeds.conf.default from main repo.
...@@ -62,6 +62,12 @@ CMAKE_OPTIONS += \ ...@@ -62,6 +62,12 @@ CMAKE_OPTIONS += \
-DWITH_SIMD=O$(if $(findstring mips,$(CONFIG_ARCH)),FF,N) \ -DWITH_SIMD=O$(if $(findstring mips,$(CONFIG_ARCH)),FF,N) \
-DWITH_TURBOJPEG=OFF -DWITH_TURBOJPEG=OFF
ifneq ($(findstring arm,$(CONFIG_ARCH)),)
ifeq ($(findstring neon,$(CONFIG_CPU_TYPE)),)
CMAKE_OPTIONS += -DWITH_SIMD=OFF
endif
endif
define Build/InstallDev define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include $(INSTALL_DIR) $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/ $(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment