diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-09-23 15:28:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-09-23 16:53:11 +0200 |
commit | d0b3e5fc81a1d1903ef220bdea8036766a17dae2 (patch) | |
tree | 2ccc4d525a2b808f30f03abc65c497035a4e7bb3 /sc | |
parent | 0387077e6647d7a30fd36d4ec41dfc559afe45c3 (diff) |
Fix linking CppunitTest/test_sc_jumbosheets_test on Windows
...where it started to fail for me with
> jumbosheets-test.o : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __cdecl SvRefBase::ReleaseRef(void)" (__imp_?ReleaseRef@SvRefBase@@QEAAXXZ) referenced in function "public: __cdecl tools::SvRef<class ScDocShell>::~SvRef<class ScDocShell>(void)" (??1?$SvRef@VScDocShell@@@tools@@QEAA@XZ)
> workdir\LinkTarget\CppunitTest\test_sc_jumbosheets_test.dll : fatal error LNK1120: 1 unresolved externals
(even though SvRefBase::ReleaseRef is defined inline in include/tools/ref.hxx;
but virtual ~SvRefBase is not, so presumably MSVC expects to find a copy of the
former emitted next to the latter).
Change-Id: I58ae9853cbf69ea58b156ae9ddf8a0a2e1dee090
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103252
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/CppunitTest_sc_jumbosheets_test.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/CppunitTest_sc_jumbosheets_test.mk b/sc/CppunitTest_sc_jumbosheets_test.mk index 3f8b0c99fbe8..0bac3a9c6571 100644 --- a/sc/CppunitTest_sc_jumbosheets_test.mk +++ b/sc/CppunitTest_sc_jumbosheets_test.mk @@ -32,6 +32,7 @@ $(eval $(call gb_CppunitTest_use_libraries,sc_jumbosheets_test, \ scqahelper \ sfx \ test \ + tl \ unotest \ vcl \ )) |