diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-07-27 18:25:51 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-07-27 18:30:13 +0300 |
commit | e83499ad82bee4c2255b47c16f877ec09eff5c35 (patch) | |
tree | 6149468b8e10ebe689782b7bf00b479b2354ce1d | |
parent | bd50d025fe5acf974f690e3388b8a429b8443139 (diff) |
Mention that --enable-lto is broken for MSVC
I don't have the inspiration to fix it. I get unresolved symbols
"__declspec(dllimport) public: virtual class com::sun::star::uno::Any __cdecl
cppu::WeakImplHelper<class com::sun::star::container::XEnumeration>::
queryInterface(class com::sun::star::uno::Type const &)" etc when linking the
fwk library in framework.
Also, surely we require GCC to be >= 4.6 now, no need to mention that.
Change-Id: I6502a4acc200f4d94c8c6e0577eee4282375db0d
-rw-r--r-- | configure.ac | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 8d3b906721e7..ed350101e10e 100644 --- a/configure.ac +++ b/configure.ac @@ -1091,10 +1091,9 @@ AC_ARG_ENABLE(ooenv, AC_ARG_ENABLE(lto, AS_HELP_STRING([--enable-lto], [Enable link-time optimization. Suitable for (optimised) product builds. Building might take - longer but libraries and executables are optimized for speed. (For GCC, best to use GCC 4.6 - or later and 'gold' linker. Works fine (and is turned on automatically in an optimising - build) for MSVC, otherwise experimental work in progress that shouldn't be used unless you - are working on it.)])) + longer but libraries and executables are optimized for speed. For GCC, best to use the 'gold' + linker. For MSVC, this option is broken at the moment. This is experimental work + in progress that shouldn't be used unless you are working on it.)])) AC_ARG_ENABLE(crashdump, AS_HELP_STRING([--enable-crashdump], |