From: Darren Tucker Date: Wed, 17 Aug 2016 04:25:43 +0000 (+1000) Subject: Correct LDFLAGS for clang example. X-Git-Tag: V_7_4_P1~150 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9abf84c25ff4448891edcde60533a6e7b2870de1;p=thirdparty%2Fopenssh-portable.git Correct LDFLAGS for clang example. --with-ldflags isn't used until after the -ftrapv test, so mention LDFLAGS instead for now. --- diff --git a/INSTALL b/INSTALL index bd5967700..e25adeb1a 100644 --- a/INSTALL +++ b/INSTALL @@ -4,7 +4,7 @@ A C compiler. Any C89 or better compiler should work. Where supported, configure will attempt to enable the compiler's run-time integrity checking options. Some notes about specific compilers: - clang: -ftrapv and -sanitize=integer require the compiler-rt runtime - (--with-ldflags=--rtlib=compiler-rt) + (CC=clang LDFLAGS=--rtlib=compiler-rt ./configure) You will need working installations of Zlib and libcrypto (LibreSSL / OpenSSL)