Hi, Jeremy
When building a DLL, the following EXPORT is ok
EXPORT test_symbol_len_123456789012345678901234:
xor eax, eax
ret
but
EXPORT test_symbol_len_1234567890123456789012345:
xor eax, eax
ret
will be ignored by GoLink.
It seems that GoLink.exe has a silent length limit of 40 chars for exported symbols. Since physical
memory is no longer expensive and good, short names are not easy to construct, would you please
raise the limit up a little bit ?
Sure, would you like to try this for size?
GoLink Version 0.26.13
It's OK now.
Thanks.