aboutsummaryrefslogtreecommitdiffstats
path: root/solc
Commit message (Collapse)AuthorAgeFilesLines
* Add import remapping documentation to `solc --help`Kevin Boxhoorn2016-10-151-1/+4
| | | | | Derived from the docs found [here](https://solidity.readthedocs.io/en/develop/miscellaneous.html#using-the-commandline-compiler). Fixes #1207.
* Disallow unknown options in solcAlex Beregszaszi2016-10-061-1/+1
|
* Merge pull request #1009 from pirapira/separate_exceptionschriseth2016-09-071-1/+15
|\ | | | | Separate the try/catch blocks on JSON and formal methods output generation
| * Separate the try/catch blocks on JSON output generation and formal method ↵Yoichi Hirai2016-09-061-1/+15
| | | | | | | | | | | | | | output generation. For the reason, see @axic's comment here https://github.com/ethereum/solidity/pull/994#discussion_r77272236 and the following discussion.
* | Merge pull request #997 from chriseth/linkingwithunderscoreschriseth2016-09-061-17/+23
|\ \ | |/ |/| Fix linking for libraries with underscores.
| * Fix compiler error.chriseth2016-09-061-1/+1
| |
| * More comments about size constants.chriseth2016-09-061-4/+9
| |
| * Fix linking for libraries with underscores.chriseth2016-09-021-17/+18
| |
* | Catch more exceptions in jsonCompiler.chriseth2016-09-021-39/+53
|/
* Corrected accidental non-ANSI characters in comments.Bob Summerwill2016-09-011-1/+1
|
* Code review changes: Renamed function and added some documentation about ↵Christopher Gilbert2016-08-311-3/+16
| | | | what the function does and why
* Code review changes: stylistic changes, and removed redundant call to set ↵Christopher Gilbert2016-08-301-3/+4
| | | | locale.
* Fixed a bug causing solc to crash on startup due to invalid environment ↵Christopher Gilbert2016-08-301-0/+11
| | | | settings for locale
* Remove standard contractsDenton Liu2016-08-192-2/+2
|
* Merge pull request #918 from winsvega/solremove4chriseth2016-08-172-12/+0
|\ | | | | remove solidity --interface
| * remove solidity --interfaceDimitry2016-08-172-12/+0
| |
* | Merge pull request #912 from chriseth/readFromStdinchriseth2016-08-171-11/+17
|\ \ | |/ |/| Read from files and stdin.
| * Read from files and stdin.chriseth2016-08-161-11/+17
| |
* | BREAKING: Streamline json output field naming. (#763)chriseth2016-08-171-2/+2
|/
* sourcemappingyann3002016-08-021-1/+1
|
* Bugfix: Correctly use srcmap-runtime.chriseth2016-08-011-1/+1
|
* Source location as part of AST.chriseth2016-07-212-6/+33
|
* Provide formal version in json output.chriseth2016-07-191-0/+16
|
* Store non-canonical version.chriseth2016-07-111-8/+8
|
* Fix crash for input from stdin.chriseth2016-06-151-1/+2
|
* Allow remappings to change depending on the context.chriseth2016-06-093-73/+46
|
* much better and simpler way of handling thisVoR02202016-05-141-1/+8
|
* wrap solc add_executablerainbeam2016-05-011-1/+1
| | | | Allows static linking.
* Source location for inline assembly.chriseth2016-04-201-1/+1
|
* Make solidity independent from ethcore.chriseth2016-04-072-5/+5
|
* rename namespace for instruction.h/cpp in libevmasmDimitry2016-04-022-4/+4
|
* move libevmcore to solidityDimitry2016-04-022-2/+2
|
* Code generation (missing external access and source locations).chriseth2016-03-302-12/+29
|
* Parsing for inline assembly.chriseth2016-03-303-10/+60
|
* BREAKING: Implement delegatecall and make default for library calls.chriseth2016-03-121-1/+1
|
* Only allow including from allowed directories.chriseth2016-01-302-9/+36
|
* Merge pull request #370 from chriseth/redirectschriseth2016-01-292-32/+77
|\ | | | | Path remappings for solc.
| * Provide remappings for solc.chriseth2016-01-262-32/+77
| |
* | Read files via callback.chriseth2016-01-272-6/+42
|/
* Autoload files in solc.chriseth2016-01-121-1/+12
|
* Merge pull request #290 from chriseth/fix_gas_iteratorchriseth2015-12-102-6/+6
|\ | | | | Fix: Segfaults connected to paramater types.
| * Fix: Segfaults connected to paramater types.chriseth2015-12-102-6/+6
| | | | | | | | parameterTypes does not return by const reference anymore.
* | Removed obsolete dockerfile.chriseth2015-12-101-70/+0
|/
* Fix the build - library is not a moduleLefteris Karapetsas2015-12-041-1/+1
| | | | | | The Module::Object rule is something only eth_use() and friends can understand. target_link_libraries() on the other hand needs only the actual library object to link to.
* Alternative case-consistency fix for libsolidity. Just using ↵Bob Summerwill2015-12-041-3/+3
| | | | fully-qualified scoped name in eh_use instead.
* Fix up for new API from EIP-1.1.Gav Wood2015-11-212-5/+5
|
* Preliminary why3 code output.chriseth2015-10-272-25/+48
|
* File reorganisation.chriseth2015-10-213-20/+20
|
* Do not forget to export the new symbol.chriseth2015-10-161-1/+1
|
* Style.chriseth2015-10-161-5/+5
|
* Multiple sources for json compiler.chriseth2015-10-161-9/+45
|
* fixed new testsLianaHus2015-10-151-1/+4
|
* errors instead of exceptionsLianaHus2015-10-151-1/+1
| | | | | | | | | Conflicts: libsolidity/CompilerStack.cpp libsolidity/NameAndTypeResolver.cpp libsolidity/NameAndTypeResolver.h libsolidity/TypeChecker.cpp test/libsolidity/SolidityNameAndTypeResolution.cpp
* added Error class for all kind of errorsLianaHus2015-10-152-31/+8
| | | | | Conflicts: libsolidity/Exceptions.h
* Support warnings.chriseth2015-10-031-25/+29
|
* -fixed the warning printingLianaHus2015-10-021-9/+8
| | | | -style fixes
* -added warning case to cl compilerLianaHus2015-10-021-1/+5
| | | | -modified warning msg
* Merge pull request #89 from chriseth/fixCombinedJsonchriseth2015-09-231-2/+6
|\ | | | | Fix "combined json" output.
| * Fix "combined json" output.chriseth2015-09-231-2/+6
| |
* | Error formatting.chriseth2015-09-222-15/+26
|/
* Merge pull request #79 from arkpar/cmakeMarek Kotewicz2015-09-171-1/+1
|\ | | | | Per project versioning
| * per project versioningarkpar2015-09-161-1/+1
| |
* | Merge pull request #75 from chriseth/exportRuntimeBytecodeForJsonchriseth2015-09-151-0/+6
|\ \ | | | | | | Export runtime bytecode and version.
| * | Export runtime bytecode and version.chriseth2015-09-151-0/+6
| | |
* | | Merge pull request #73 from chriseth/emscriptenArkadiy Paronyan2015-09-151-2/+8
|\| | | | | | | | Changes required to compile on emscripten target.
| * | Changes required to compile on emscripten target.chriseth2015-09-151-2/+8
| |/
* / Commandline interface for the linker.chriseth2015-09-122-2/+128
|/
* Transition from bytecode to more general linker objects.chriseth2015-09-112-15/+15
|
* Merge pull request #41 from LianaHus/sol_rename_getterschriseth2015-09-082-60/+60
|\ | | | | solidity interface changes. removing get prefix
| * - renamed AST to ast and ABI to abiLianaHus2015-09-082-7/+7
| | | | | | | | - style fixes
| * renamed getter functionsLianaHus2015-09-082-60/+60
| |
* | changes required to compile solidity in a single projectdebris2015-09-011-2/+0
|/
* Merge pull request #27 from LianaHus/sol_runtime_binary_by_-solcGav Wood2015-08-281-1/+14
|\ | | | | added option to solc to output runtime part of the contract
| * added option to solc to output runtimr part of the contractLianaHus2015-08-241-1/+14
| |
* | client refactordebris2015-08-271-6/+1
| |
* | Refactoreed CMakeLists for new module systemarkpar2015-08-241-3/+2
|/
* More information for help screen, some fixes for argument parsing.chriseth2015-08-202-76/+86
|
* Moved solc files.chriseth2015-08-196-0/+1039