Skip to content

Commit

Permalink
CC: cyassl: disable Intel ASM for now
Browse files Browse the repository at this point in the history
With ASM support enabled, CyaSSL fails to build on all x86 subtargets.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>

Backport of r48876

git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@48877 3c298f89-4303-0410-b956-a3cf2f4a3e73
  • Loading branch information
jow committed Mar 2, 2016
1 parent 0914eea commit cb7a26c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions package/libs/cyassl/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (C) 2006-2014 OpenWrt.org
# Copyright (C) 2006-2016 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
Expand All @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=wolfssl
PKG_VERSION:=3.8.0
PKG_RELEASE:=1
PKG_RELEASE:=2

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip
PKG_SOURCE_URL:=https://www.wolfssl.com/
Expand Down Expand Up @@ -46,12 +46,12 @@ CONFIGURE_ARGS += \
--enable-sslv3 \
--disable-examples

ifneq ($(CONFIG_TARGET_x86),)
CONFIGURE_ARGS += --enable-intelasm
endif
ifneq ($(CONFIG_TARGET_x86_64),)
CONFIGURE_ARGS += --enable-intelasm
endif
#ifneq ($(CONFIG_TARGET_x86),)
# CONFIGURE_ARGS += --enable-intelasm
#endif
#ifneq ($(CONFIG_TARGET_x86_64),)
# CONFIGURE_ARGS += --enable-intelasm
#endif

define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include
Expand Down

0 comments on commit cb7a26c

Please sign in to comment.