Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 923119 - www-client/firefox: build failure with USE=pgo + ld.mold
Summary: www-client/firefox: build failure with USE=pgo + ld.mold
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Mozilla Gentoo Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-01-28 14:25 UTC by Jonas Rakebrandt
Modified: 2024-01-31 18:03 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
build log (firefox-122.0:20240128-134614.log.gz,142.21 KB, application/gzip)
2024-01-28 14:26 UTC, Jonas Rakebrandt
Details
emerge --info (emerge-info.gz,7.53 KB, application/gzip)
2024-01-28 14:26 UTC, Jonas Rakebrandt
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jonas Rakebrandt 2024-01-28 14:25:33 UTC
PGO seems to be incompatible with the mold linker and fails with the error:

> mold: fatal: std-7f67e63eb87e9645.std.5a0cb329cb1dc408-cgu.0.rcgu.o: don't know how to handle this LTO object file because no -plugin option was given. Please make sure you added -flto not only for creating object files but also for creating the final executable.

This happens right at the beginning of the first (pre profiling) stage during cargo build.

Just LTO+ld.mold doesn't have this issue.

Reproducible: Always

Steps to Reproduce:
1. Try to build firefox with USE=pgo and -fuse-ld=mold in *FLAGS
   (Tested with *FLAGS="-march=native -O2 -pipe -fuse-ld=mold")
2. Wait until for cargo build to fail (on my machine after ~1 min)
Actual Results:  
Build fails.

> process didn't exit successfully: ... clang: linker command failed

Expected Results:  
Build succeeds.
Comment 1 Jonas Rakebrandt 2024-01-28 14:26:35 UTC
Created attachment 883435 [details]
build log
Comment 2 Jonas Rakebrandt 2024-01-28 14:26:54 UTC
Created attachment 883436 [details]
emerge --info
Comment 3 Joonas Niilola gentoo-dev 2024-01-30 06:33:30 UTC
Shame it's with +clang, mold should work better with clang indeed. There was something in the ebuild I needed to do with gcc+mold, so doubt it's going to work better either. You can try though.

Oh also, always disable ccache/sccache first and try without that. It almost always solves it.
Comment 4 Jonas Rakebrandt 2024-01-30 11:32:35 UTC
clang+mold+pgo still fails even with (s)ccache disabled.

gcc+mold+pgo isn't a thing according to the ebuild (because pgo requires lto).
(gcc would likely fail anyways as rust on my system is built against LLVM's libc++)

However I found a workaround. Since mold wants -flto* in LDFLAGS I just readded that flag after filter-lto for clang+lto+mold.

> # LTO flag was handled via configure
> filter-lto
>
>+ # explicitly set -flto for mold bgo#923119
>+ if use clang && use lto && tc-ld-is-mold; then
>+     append-ldflags "-flto=thin"
>+ fi

Not the prettiest solution but now mold doesn't complain about the missing flag.
Since regular lto seems to work as is you might even restrict it further to "use pgo" instead of lto.
Comment 5 Joonas Niilola gentoo-dev 2024-01-31 07:58:10 UTC
(In reply to Jonas Rakebrandt from comment #4)
> 
> gcc+mold+pgo isn't a thing according to the ebuild (because pgo requires
> lto).
> (gcc would likely fail anyways as rust on my system is built against LLVM's
> libc++)

Ah indeed, it falls back to bfd if it detects that gcc+lto. 

> 
> However I found a workaround. Since mold wants -flto* in LDFLAGS I just
> readded that flag after filter-lto for clang+lto+mold.
> 
> > # LTO flag was handled via configure
> > filter-lto
> >
> >+ # explicitly set -flto for mold bgo#923119
> >+ if use clang && use lto && tc-ld-is-mold; then
> >+     append-ldflags "-flto=thin"
> >+ fi
> 
> Not the prettiest solution but now mold doesn't complain about the missing
> flag.
> Since regular lto seems to work as is you might even restrict it further to
> "use pgo" instead of lto.

Awesome finding! I'll try to group the logic and keep everything related in the same place.
Comment 6 Larry the Git Cow gentoo-dev 2024-01-31 08:30:52 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce63d29f57ba87b19b34e24b48a126cabd6a7264

commit ce63d29f57ba87b19b34e24b48a126cabd6a7264
Author:     Joonas Niilola <juippis@gentoo.org>
AuthorDate: 2024-01-31 08:29:52 +0000
Commit:     Joonas Niilola <juippis@gentoo.org>
CommitDate: 2024-01-31 08:30:49 +0000

    www-client/firefox: drop ppc64 patch, fix mold+lto+pgo error on 122.0
    
    Closes: https://bugs.gentoo.org/923300
    Closes: https://bugs.gentoo.org/923119
    Signed-off-by: Joonas Niilola <juippis@gentoo.org>

 www-client/firefox/Manifest             | 2 +-
 www-client/firefox/firefox-122.0.ebuild | 6 ++++--
 2 files changed, 5 insertions(+), 3 deletions(-)
Comment 7 Jonas Rakebrandt 2024-01-31 17:24:04 UTC
Shouldn't `append-ldflags "-flto=thin"` go after `filter-lto`?
The way it is now -flto=thin is set for lto+clang+mold only to get filtered out again right after.
Comment 8 Joonas Niilola gentoo-dev 2024-01-31 17:28:36 UTC
Hmm, looks like I didn't push the final version. I combined linker, lto and elf-hack stuff so they're together. I'll commit the final final version tomorrow!
Comment 9 Larry the Git Cow gentoo-dev 2024-01-31 17:41:41 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a5d704f98b2099104eb371dbbad16eeda3f1ec1

commit 5a5d704f98b2099104eb371dbbad16eeda3f1ec1
Author:     Joonas Niilola <juippis@gentoo.org>
AuthorDate: 2024-01-31 17:40:40 +0000
Commit:     Joonas Niilola <juippis@gentoo.org>
CommitDate: 2024-01-31 17:41:38 +0000

    www-client/firefox: fast-fix for mold+lto+pgo compile issue on 122
    
     - handling elf-hack should be grouped together with these linker options.
    
    Closes: https://bugs.gentoo.org/923119
    Signed-off-by: Joonas Niilola <juippis@gentoo.org>

 www-client/firefox/firefox-122.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
Comment 10 Joonas Niilola gentoo-dev 2024-01-31 17:42:09 UTC
Well here's an untested fast-fix from laptop :P
Comment 11 Jonas Rakebrandt 2024-01-31 18:03:10 UTC
Nice, works now. Thanks!