Browse Source

fastd: re-enable link-time optimization

The toolchain is fixed, so LTO can be enabled again.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Matthias Schiffer 10 years ago
parent
commit
5ab3b37710
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      net/fastd/Makefile

+ 3
- 2
net/fastd/Makefile View File

@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
9 9
 
10 10
 PKG_NAME:=fastd
11 11
 PKG_VERSION:=14
12
-PKG_RELEASE:=2
12
+PKG_RELEASE:=3
13 13
 
14 14
 PKG_MAINTAINER:=Matthias Schiffer <mschiffer@universe-factory.net>
15 15
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
@@ -79,7 +79,8 @@ CMAKE_OPTIONS += \
79 79
 	-DWITH_VERIFY:BOOL=FALSE \
80 80
 	-DWITH_CAPABILITIES:BOOL=FALSE \
81 81
 	-DENABLE_SYSTEMD:BOOL=FALSE \
82
-	-DENABLE_LIBSODIUM:BOOL=FALSE
82
+	-DENABLE_LIBSODIUM:BOOL=FALSE \
83
+	-DENABLE_LTO:BOOL=TRUE
83 84
 
84 85
 
85 86
 ifeq ($(CONFIG_FASTD_ENABLE_METHOD_CIPHER_TEST),y)