diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-12-16 02:03:20 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-12-16 02:03:20 +0000 |
commit | 5d6c3b75cbe2276abf67d8055bd7a7aedf194a71 (patch) | |
tree | a848845fb95c91673772eacfe88c40c093daf188 /package/openssl/Makefile | |
parent | d560a3be458ec52be31980ba2ae6b7993b0a1ab4 (diff) | |
download | upstream-5d6c3b75cbe2276abf67d8055bd7a7aedf194a71.tar.gz upstream-5d6c3b75cbe2276abf67d8055bd7a7aedf194a71.tar.bz2 upstream-5d6c3b75cbe2276abf67d8055bd7a7aedf194a71.zip |
openssl: use assembler version of aes on arm - nearly doubles aes encryption performance
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18790 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openssl/Makefile')
-rw-r--r-- | package/openssl/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/package/openssl/Makefile b/package/openssl/Makefile index 23695fcc2f..ac565218da 100644 --- a/package/openssl/Makefile +++ b/package/openssl/Makefile @@ -71,12 +71,16 @@ OPENSSL_NO_CIPHERS:= no-idea no-md2 no-mdc2 no-rc5 no-sha0 no-smime \ no-rmd160 no-aes192 no-ripemd no-camellia no-ans1 no-krb5 ifeq ($(BOARD),ixp4xx) OPENSSL_OPTIONS:= shared no-ec no-err no-hw no-threads zlib-dynamic \ - no-sse2 no-perlasm --with-cryptodev + no-sse2 --with-cryptodev else OPENSSL_OPTIONS:= shared no-ec no-err no-hw no-threads zlib-dynamic \ - no-engines no-sse2 no-perlasm + no-engines no-sse2 +endif +ifdef CONFIG_arm +OPENSSL_MAKEFLAGS := AES_ASM_OBJ="aes-armv4.o aes_cbc.o" +else +OPENSSL_OPTIONS += no-perlasm endif - define Build/Configure (cd $(PKG_BUILD_DIR); \ @@ -100,21 +104,25 @@ define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ MAKEDEPPROG="$(TARGET_CROSS)gcc" \ OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \ + $(OPENSSL_MAKEFLAGS) \ depend $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ AR="$(TARGET_CROSS)ar r" \ RANLIB="$(TARGET_CROSS)ranlib" \ OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \ + $(OPENSSL_MAKEFLAGS) \ all build-shared # Work around openssl build bug to link libssl.so with libcrypto.so. -rm $(PKG_BUILD_DIR)/libssl.so.*.*.* $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ OPENWRT_OPTIMIZATION_FLAGS="$(TARGET_CFLAGS)" \ + $(OPENSSL_MAKEFLAGS) \ do_linux-shared $(MAKE) -C $(PKG_BUILD_DIR) \ INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \ + $(OPENSSL_MAKEFLAGS) \ install endef |