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
During linking of a binary with a custom linker script that includes symbols to denote the current address (via some_symbol = .;), the following issue can be observed:
ld.lld: warning: could not determine size of cap reloc against <unknown kind> (in GOT) some_symbol
>>> defined in <internal>
>>> referenced by <internal>:(.got+0x[SOME OFFSET])
some_symbol is also a symbol in C declared as extern char some_symbol[];.
During linking of a binary with a custom linker script that includes symbols to denote the current address (via
some_symbol = .;
), the following issue can be observed:some_symbol
is also a symbol in C declared asextern char some_symbol[];
.ref: https://cheri-cpu.slack.com/archives/C03JCGFPPU1/p1686852560725089 & https://cheri-cpu.slack.com/archives/C03JCGFPPU1/p1686920378781959
The text was updated successfully, but these errors were encountered: