summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2021-08-12 13:24:26 -0400
committerGitHub <noreply@github.com>2021-08-12 13:24:26 -0400
commit0447a2d40db77143e567dbcab1188fb81ca0bb11 (patch)
tree8e93df8ba9b726127a1fa09879496e8c8b22dbfb /configure.ac
parentf541feb7f0df5b6159ea6176eb6577a485a15b71 (diff)
Default to not using LTO for builds. (#11432)
* Default to not using LTO for builds. This significantly speeds up the build process and avoids strange linking errors. * Update installer help text.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index d3b13231a1..073fffce38 100644
--- a/configure.ac
+++ b/configure.ac
@@ -144,9 +144,9 @@ AC_ARG_ENABLE(
)
AC_ARG_ENABLE(
[lto],
- [AS_HELP_STRING([--disable-lto], [Link Time Optimizations @<:@default autodetect@:>@])],
+ [AS_HELP_STRING([--enable-lto], [Link Time Optimizations @<:@default disabled@:>@])],
,
- [enable_lto="detect"]
+ [enable_lto="no"]
)
AC_ARG_ENABLE(
[https],