diff options
author | Haruna <haru@dotalux.com> | 2015-08-15 00:36:06 +0200 |
---|---|---|
committer | Haruna <haru@dotalux.com> | 2015-08-15 00:36:06 +0200 |
commit | 6795414243a08d47bc111e23c9c0f09218260ccf (patch) | |
tree | 8c61400c76e574b92e8f6050689f4d5159b93090 | |
parent | 1dd61c6732394219fdbe9abed2af5c785a0309b0 (diff) | |
parent | 4aafe04ff1c47efa1a5bb8710e7f4eef87ab305a (diff) | |
download | hercules-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…
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1354,7 +1354,7 @@ Optional Features: --enable-profiler=ARG Profilers: no, gprof (disabled by default) --disable-64bit Enforce 32bit output on x86_64 systems. --enable-lto Enables or Disables Linktime Code Optimization (LTO - is enabled by default) + is disabled by default) --enable-static Enables or Disables Statick Linking (STATIC is disabled by default) --enable-sanitize[=ARG] Enables sanitizer. (disabled by default) (available @@ -3658,7 +3658,7 @@ if test "${enable_lto+set}" = set; then : esac else - enable_lto="yes" + enable_lto="no" fi 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"] ) |