You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 13, 2024. It is now read-only.
0000000000000000 R_AARCH64_ABS64 sort
0000000000000008 R_AARCH64_ABS64 __ksymtab_strings
drivers/firmware/efi/libstub/lib-sort.stub.o: absolute symbol references not allowed in the EFI stub
It looks like this is probably caused by llvm-strip not supporting the globs in STUBCOPY_RM-y, which @rupprecht noted here. These were removed upstream in torvalds/linux@02562d0 because of torvalds/linux@f922c4a. torvalds/linux@f922c4a decently backports to 4.9 and 4.14, not so clean for 4.4. Might be wise to conditionally turn on llvm-strip.
This was "resolved" upstream by torvalds/linux@5620a0d, which we obviously can't backport. We could apply a local patch that removes the fw-shipped rule in the Makefile or fix llvm-objcopy (if it is even broken).
https://travis-ci.com/ClangBuiltLinux/continuous-integration/jobs/199950114
https://travis-ci.com/ClangBuiltLinux/continuous-integration/jobs/199950118
https://travis-ci.com/ClangBuiltLinux/continuous-integration/jobs/199950120
Stuff along the lines of:
It looks like this is probably caused by
llvm-stripnot supporting the globs inSTUBCOPY_RM-y, which @rupprecht noted here. These were removed upstream in torvalds/linux@02562d0 because of torvalds/linux@f922c4a. torvalds/linux@f922c4a decently backports to 4.9 and 4.14, not so clean for 4.4. Might be wise to conditionally turn onllvm-strip.https://travis-ci.com/ClangBuiltLinux/continuous-integration/jobs/199950119
https://travis-ci.com/ClangBuiltLinux/continuous-integration/jobs/199950121
Relevant bits of Makefile:
This was "resolved" upstream by torvalds/linux@5620a0d, which we obviously can't backport. We could apply a local patch that removes the
fw-shippedrule in the Makefile or fixllvm-objcopy(if it is even broken).