We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee9feac commit 17a0d65Copy full SHA for 17a0d65
tools/mpy_ld.py
@@ -434,6 +434,8 @@ def populate_got(env):
434
dest = got_entry.name
435
elif got_entry.name.startswith("mp_fun_table+0x"):
436
dest = int(got_entry.name.split("+")[1], 16) // env.arch.word_size
437
+ elif got_entry.sec_name == ".external.mp_fun_table":
438
+ dest = got_entry.sym.mp_fun_table_offset
439
elif got_entry.sec_name.startswith(".text"):
440
dest = ".text"
441
elif got_entry.sec_name.startswith(".rodata"):
0 commit comments