Provide fallback for linking.

This commit is contained in:
chriseth
2017-01-18 17:41:36 +01:00
parent 005e190885
commit d3a391c136
4 changed files with 42 additions and 21 deletions
+6
View File
@@ -49,6 +49,12 @@ struct LinkerObject
/// @returns a hex representation of the bytecode of the given object, replacing unlinked
/// addresses by placeholders.
std::string toHex() const;
private:
static h160 const* matchLibrary(
std::string const& _linkRefName,
std::map<std::string, h160> const& _libraryAddresses
);
};
}