summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorHaruna <haru@dotalux.com>2015-08-15 00:36:06 +0200
committerHaruna <haru@dotalux.com>2015-08-15 00:36:06 +0200
commit6795414243a08d47bc111e23c9c0f09218260ccf (patch)
tree8c61400c76e574b92e8f6050689f4d5159b93090 /configure.in
parent1dd61c6732394219fdbe9abed2af5c785a0309b0 (diff)
parent4aafe04ff1c47efa1a5bb8710e7f4eef87ab305a (diff)
downloadhercules-6795414243a08d47bc111e23c9c0f09218260ccf.tar.gz
hercules-6795414243a08d47bc111e23c9c0f09218260ccf.tar.bz2
hercules-6795414243a08d47bc111e23c9c0f09218260ccf.tar.xz
hercules-6795414243a08d47bc111e23c9c0f09218260ccf.zip
Merge pull request #645 from 4144/lto
Disable LTO by default. Because look like support for it broken in gc…
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 8567c6bcb..9beefb246 100644
--- a/configure.in
+++ b/configure.in
@@ -256,7 +256,7 @@ AC_ARG_ENABLE(
AC_HELP_STRING(
[--enable-lto],
[
- Enables or Disables Linktime Code Optimization (LTO is enabled by default)
+ Enables or Disables Linktime Code Optimization (LTO is disabled by default)
]
),
[
@@ -267,7 +267,7 @@ AC_ARG_ENABLE(
*) AC_MSG_ERROR([[invalid argument --enable-lto=$disableval... stopping]]);;
esac
],
- [enable_lto="yes"]
+ [enable_lto="no"]
)