[Libreoffice-bugs] [Bug 138122] LibreOffice font blurry on MacBook Pro's Internal HiDPI Retina Display running macOS Big Sur 11.0.1

bugzilla-daemon at bugs.documentfoundation.org bugzilla-daemon at bugs.documentfoundation.org
Tue Nov 17 21:39:06 UTC 2020


https://bugs.documentfoundation.org/show_bug.cgi?id=138122

--- Comment #38 from Tor Lillqvist <tml at iki.fi> ---
> Where can I find that patch?

The patch in question is this change that was made to the LibreOffice source
coce in February:
https://git.libreoffice.org/core/+/ec9f0161d9b5a57d4b8e3e17150fabcc6e4c67a1%5E%21

The relevant part is the change to desktop/Executable_soffice_bin.mk that
causes some more flags to be used when linking the soffice executable (which is
the actual executable of the LibreOffice app bundle):

> -Xlinker -platform_version -Xlinker macos -Xlinker $(MAC_OS_X_VERSION_MIN_REQUIRED_DOTS) -Xlinker 0.0.0

which in practice, if you use the default minimum required macOS version of
10.10, expands to:

> -Xlinker -platform_version -Xlinker macos -Xlinker 10.10 -Xlinker 0.0.0

which means that the actual extra flags passed to ld are:

>  -platform_version macos 10.10 0.0.0

See the ld(1) man page for what that means.

To see this in practice, in an already-built LibreOffice tree, do:

> rm instdir/LibreOfficeDev.app/Contents/MacOS/soffice
> make verbose=t desktop

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice-bugs/attachments/20201117/50910864/attachment.htm>


More information about the Libreoffice-bugs mailing list