diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-07-26 22:37:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-26 22:37:16 +0800 |
commit | 43002b7bb8973e02919f23dcea099cb9877e9579 (patch) | |
tree | 6270037929123b5a95038a6bd7f3b6a305d516ac /solc | |
parent | 887823dca6e244d4dae84ca545fe3f0e8170b3d0 (diff) | |
parent | 30012db396793efad5dba9a2bbb64d34994709ce (diff) | |
download | dexon-solidity-43002b7bb8973e02919f23dcea099cb9877e9579.tar dexon-solidity-43002b7bb8973e02919f23dcea099cb9877e9579.tar.gz dexon-solidity-43002b7bb8973e02919f23dcea099cb9877e9579.tar.bz2 dexon-solidity-43002b7bb8973e02919f23dcea099cb9877e9579.tar.lz dexon-solidity-43002b7bb8973e02919f23dcea099cb9877e9579.tar.xz dexon-solidity-43002b7bb8973e02919f23dcea099cb9877e9579.tar.zst dexon-solidity-43002b7bb8973e02919f23dcea099cb9877e9579.zip |
Merge pull request #2599 from ethereum/compilerstack-cleanup
Cleanup compilerstack (remove old methods and clean compile)
Diffstat (limited to 'solc')
-rw-r--r-- | solc/CommandLineInterface.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index db497d84..740061a1 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -774,10 +774,14 @@ bool CommandLineInterface::processInput() m_compiler->setRemappings(m_args[g_argInputFile].as<vector<string>>()); for (auto const& sourceCode: m_sourceCodes) m_compiler->addSource(sourceCode.first, sourceCode.second); + if (m_args.count(g_argLibraries)) + m_compiler->setLibraries(m_libraries); // TODO: Perhaps we should not compile unless requested bool optimize = m_args.count(g_argOptimize) > 0; unsigned runs = m_args[g_argOptimizeRuns].as<unsigned>(); - bool successful = m_compiler->compile(optimize, runs, m_libraries); + m_compiler->setOptimiserSettings(optimize, runs); + + bool successful = m_compiler->compile(); for (auto const& error: m_compiler->errors()) SourceReferenceFormatter::printExceptionInformation( |