From f4e94a9089c2996c3eabe7a335c71675e66273da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Gallou=C3=ABt?= Date: Mon, 11 Jul 2016 10:24:47 +0000 Subject: [PATCH] Remove -flto for now --- .build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.build.sh b/.build.sh index 4eafa4e..1138050 100755 --- a/.build.sh +++ b/.build.sh @@ -4,10 +4,10 @@ export CC="gcc -static" git clone https://github.com/jedisct1/libsodium --depth=1 --branch stable cd libsodium || exit 1 -./autogen.sh && ./configure CFLAGS=-flto LDFLAGS=-flto --enable-minimal --disable-shared --prefix=/usr && make install +./autogen.sh && ./configure --enable-minimal --disable-shared --prefix=/usr && make install cd .. -./autogen.sh && ./configure CFLAGS=-flto LDFLAGS=-flto && make +./autogen.sh && ./configure && make [ -x glorytun ] || exit 1 mkdir -p deploy