News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

GoLink: symbol length limit 40

Started by nsquare, September 09, 2009, 08:54:32 AM

Previous topic - Next topic

nsquare

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 ?

jorgon

Sure, would you like to try this for size?
GoLink Version 0.26.13

Author of the "Go" tools (GoAsm, GoLink, GoRC, GoBug)

nsquare