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
ld.lld: warning: lto.tmp: linking abicalls code with non-abicalls code k.old.lld: warning: cannot find entry symbol __start; not setting start address
The problematic one is the ld.lld: warning: lto.tmp: linking abicalls code with non-abicalls code k.o. The assembly code is correctly generated without ABI calls. However, LTO code apparently is generated with ABI calls despite -mno-abicalls argument present.
Is it a bug or shall one disable mno-abicalls anyhow differently?
The text was updated successfully, but these errors were encountered:
For 2 empty files (t.c and k.S) do the following:
The following warnings will be generated:
The problematic one is the
ld.lld: warning: lto.tmp: linking abicalls code with non-abicalls code k.o
. The assembly code is correctly generated without ABI calls. However, LTO code apparently is generated with ABI calls despite-mno-abicalls
argument present.Is it a bug or shall one disable mno-abicalls anyhow differently?
The text was updated successfully, but these errors were encountered: