summaryrefslogtreecommitdiff
path: root/package/libs/openssl
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-05-10 00:18:27 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-05-10 00:18:27 +0000
commitaacbb9ba7702b383ca10c4d940d4e85fc6a1f0bb (patch)
tree2b9d962d9d1a03d23fa1e826a6442d33cfcc319e /package/libs/openssl
parent03531f565a0db6024754b48c2fd1790b35d24f64 (diff)
downloadmtk-20170518-aacbb9ba7702b383ca10c4d940d4e85fc6a1f0bb.zip
mtk-20170518-aacbb9ba7702b383ca10c4d940d4e85fc6a1f0bb.tar.gz
mtk-20170518-aacbb9ba7702b383ca10c4d940d4e85fc6a1f0bb.tar.bz2
openssl: disable mips16, it makes the code slower
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36602
Diffstat (limited to 'package/libs/openssl')
-rw-r--r--package/libs/openssl/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libs/openssl/Makefile b/package/libs/openssl/Makefile
index 049aad4..0091579 100644
--- a/package/libs/openssl/Makefile
+++ b/package/libs/openssl/Makefile
@@ -111,7 +111,7 @@ define Build/Configure
)
endef
-TARGET_CFLAGS += $(FPIC)
+TARGET_CFLAGS := $(filter-out -mips16 -minterlink-mips16,$(TARGET_CFLAGS)) $(FPIC)
define Build/Compile
# XXX: OpenSSL "make depend" will look for installed headers before its own,