mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
1f30982ab5
Using libraries leaves behind a library link reference in the binary which the linker must later resolve. These link references were still being generated by name and not by fully-qualified name. This would lead to a link-time collision between two libraries having the same name but in different source units. This change changes linker symbols over to fully-qualified names, which resolves that issue. This does potentially introduce a new problem, which is that linker symbols appear to be limited to 36 characters and are truncated. Storing paths extends the average symbol size, and it would be great if truncation was from the tail rather than the head. |
||
---|---|---|
.. | ||
contracts | ||
libdevcore | ||
libevmasm | ||
liblll | ||
libsolidity | ||
boostTest.cpp | ||
CMakeLists.txt | ||
ExecutionFramework.cpp | ||
ExecutionFramework.h | ||
RPCSession.cpp | ||
RPCSession.h | ||
TestHelper.cpp | ||
TestHelper.h |