common/compiler: support relative import paths (#17374)

This commit is contained in:
shiqinfeng1 2019-08-15 16:33:06 +08:00 committed by Felix Lange
parent c2c4c9f1e5
commit 260b177fe3
1 changed files with 1 additions and 0 deletions

View File

@ -48,6 +48,7 @@ func (s *Solidity) makeArgs() []string {
p := []string{
"--combined-json", "bin,bin-runtime,srcmap,srcmap-runtime,abi,userdoc,devdoc",
"--optimize", // code optimizer switched on
"--allow-paths", "., ./, ../", //default to support relative path ./ ../ .
}
if s.Major > 0 || s.Minor > 4 || s.Patch > 6 {
p[1] += ",metadata,hashes"