diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2022-04-29 15:50:22 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2022-05-01 05:47:22 +0200 |
commit | 1ffd6897ddf15624e70585ab08e8af713114c938 (patch) | |
tree | 8ccc6deb8d62d3c19ae2d90c70fb7bef7d0f57b1 /external/hunspell | |
parent | 339fbb7bc30f227b9d4c9b9eea03b25f49533dee (diff) |
try to use also proper debug LDFLAGS for externals libraries
This is basically ea68de2968c0dbcd8e7549435e829db06795c16d but
for LDFLAGS. A number of external libs cannot use this because
their libtool mishandles -fuse-ld.
Change-Id: Idee379eb0a3afb475b536519ee3de064b4e218f4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133639
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'external/hunspell')
-rw-r--r-- | external/hunspell/ExternalProject_hunspell.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/hunspell/ExternalProject_hunspell.mk b/external/hunspell/ExternalProject_hunspell.mk index a125c819c96e..c63498af73fc 100644 --- a/external/hunspell/ExternalProject_hunspell.mk +++ b/external/hunspell/ExternalProject_hunspell.mk @@ -21,7 +21,7 @@ hunspell_CXXFLAGS:=$(CXXFLAGS) $(gb_LTOFLAGS) \ $(gb_EMSCRIPTEN_CPPFLAGS) \ $(call gb_ExternalProject_get_build_flags,hunspell) -hunspell_LDFLAGS:=$(gb_LTOFLAGS) +hunspell_LDFLAGS:=$(gb_LTOFLAGS) $(call gb_ExternalProject_get_link_flags,hunspell) $(call gb_ExternalProject_get_state_target,hunspell,build): $(call gb_Trace_StartRange,hunspell,EXTERNAL) |