Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Do not create directories . and .. | Alex Beregszaszi | 2017-02-06 | 1 | -1/+3 |
| | |||||
* | Always escape filenames in solc | Alex Beregszaszi | 2017-02-06 | 1 | -7/+7 |
| | |||||
* | fix for linker wrt binaries generated with import statements | VoR0220 | 2017-01-31 | 1 | -1/+3 |
| | | | | Signed-off-by: VoR0220 <rj@erisindustries.com> | ||||
* | Merge pull request #1604 from ethereum/checksums | Alex Beregszaszi | 2017-01-26 | 1 | -0/+5 |
|\ | | | | | Warn about invalid checksums of addresses. | ||||
| * | Also check library addresses. | chriseth | 2017-01-25 | 1 | -0/+5 |
| | | |||||
* | | Merge pull request #1610 from ethereum/assemblyModeError | Alex Beregszaszi | 2017-01-26 | 2 | -26/+33 |
|\ \ | | | | | | | Proper error reporting for assembly mode. | ||||
| * | | Header cleanup. | chriseth | 2017-01-26 | 2 | -26/+29 |
| | | | |||||
| * | | Proper error reporting for assembly mode. | chriseth | 2017-01-26 | 1 | -0/+4 |
| |/ | |||||
* / | Add option to solc to use literal sources in metadta | Alex Beregszaszi | 2017-01-26 | 1 | -1/+6 |
|/ | |||||
* | Fix bad merge artifact(?) | Rhett Aultman | 2017-01-17 | 1 | -1/+1 |
| | | | | | | Looks like merging up munged line 188 in CommandLineInterface.cpp, so that a string literal was being used where a global variable should be. | ||||
* | Stylistic corrections | Rhett Aultman | 2017-01-17 | 1 | -2/+0 |
| | |||||
* | Only avoid collision if it's the same file | Rhett Aultman | 2017-01-17 | 1 | -2/+4 |
| | | | | | | | | | @chriseth had suggested that it would be better if contracts were referenced in a file:contract notation, and that we output .bin files that prepend original path names if necessary to avoid a collision. This commit is mostly a draft; it still needs to be run through the test suite. | ||||
* | Merge pull request #1491 from ameten/refactoring | chriseth | 2016-12-13 | 1 | -138/+183 |
|\ | | | | | Just refactored some code | ||||
| * | - alphabetically sorted string constants per name. | Danil Nemirovsky | 2016-12-09 | 1 | -45/+45 |
| | | |||||
| * | - moved string constants into common place; | Danil Nemirovsky | 2016-12-09 | 1 | -136/+181 |
| | | | | | | | | - replaced string literals with string constants. | ||||
* | | Remove unused variable inputFiles | Federico Bond | 2016-12-11 | 1 | -1/+0 |
|/ | |||||
* | Update metadata documentation | Alex Beregszaszi | 2016-12-01 | 1 | -1/+1 |
| | |||||
* | Make sure some keys are present. | chriseth | 2016-12-01 | 1 | -1/+1 |
| | |||||
* | Metadata stamp. | chriseth | 2016-12-01 | 3 | -3/+22 |
| | |||||
* | Fix typos (existant -> existent) | Federico Bond | 2016-12-01 | 1 | -1/+1 |
| | |||||
* | Fix licensing headers | VoR0220 | 2016-11-23 | 4 | -16/+16 |
| | | | | Signed-off-by: VoR0220 <rj@erisindustries.com> | ||||
* | Move JSON helpers to libdevcore/json | Alex Beregszaszi | 2016-11-16 | 2 | -28/+11 |
| | |||||
* | Move InterfaceHandler from string to JSON | Alex Beregszaszi | 2016-11-15 | 2 | -9/+34 |
| | |||||
* | Unimplemented features moved to their own exception (#1361) | Rhett Aultman | 2016-11-15 | 2 | -0/+10 |
| | | | | | | | | | | | | | | | | | | Unimplemented features moved to their own exception InternalCompilerError is an exception that really should be reserved for actual internal errors of the compiler. Unimplemented features can now use either solUnimplemented( ) or, if it should be conditional, then solUnimplementedAssert( ). * Revert some unimplemented exceptions, add handlers The jsonCompiler and CommandLineInterface needed handlers for the new UnimplementedFeatureException, and some cases I had moved on to the new exception were better treated as real internal compiler errors. * Standardize on "Unimplemented feature" message | ||||
* | Add import remapping documentation to `solc --help` | Kevin Boxhoorn | 2016-10-15 | 1 | -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 solc | Alex Beregszaszi | 2016-10-06 | 1 | -1/+1 |
| | |||||
* | Merge pull request #1009 from pirapira/separate_exceptions | chriseth | 2016-09-07 | 1 | -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 Hirai | 2016-09-06 | 1 | -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/linkingwithunderscores | chriseth | 2016-09-06 | 1 | -17/+23 |
|\ \ | |/ |/| | Fix linking for libraries with underscores. | ||||
| * | Fix compiler error. | chriseth | 2016-09-06 | 1 | -1/+1 |
| | | |||||
| * | More comments about size constants. | chriseth | 2016-09-06 | 1 | -4/+9 |
| | | |||||
| * | Fix linking for libraries with underscores. | chriseth | 2016-09-02 | 1 | -17/+18 |
| | | |||||
* | | Catch more exceptions in jsonCompiler. | chriseth | 2016-09-02 | 1 | -39/+53 |
|/ | |||||
* | Corrected accidental non-ANSI characters in comments. | Bob Summerwill | 2016-09-01 | 1 | -1/+1 |
| | |||||
* | Code review changes: Renamed function and added some documentation about ↵ | Christopher Gilbert | 2016-08-31 | 1 | -3/+16 |
| | | | | what the function does and why | ||||
* | Code review changes: stylistic changes, and removed redundant call to set ↵ | Christopher Gilbert | 2016-08-30 | 1 | -3/+4 |
| | | | | locale. | ||||
* | Fixed a bug causing solc to crash on startup due to invalid environment ↵ | Christopher Gilbert | 2016-08-30 | 1 | -0/+11 |
| | | | | settings for locale | ||||
* | Remove standard contracts | Denton Liu | 2016-08-19 | 2 | -2/+2 |
| | |||||
* | Merge pull request #918 from winsvega/solremove4 | chriseth | 2016-08-17 | 2 | -12/+0 |
|\ | | | | | remove solidity --interface | ||||
| * | remove solidity --interface | Dimitry | 2016-08-17 | 2 | -12/+0 |
| | | |||||
* | | Merge pull request #912 from chriseth/readFromStdin | chriseth | 2016-08-17 | 1 | -11/+17 |
|\ \ | |/ |/| | Read from files and stdin. | ||||
| * | Read from files and stdin. | chriseth | 2016-08-16 | 1 | -11/+17 |
| | | |||||
* | | BREAKING: Streamline json output field naming. (#763) | chriseth | 2016-08-17 | 1 | -2/+2 |
|/ | |||||
* | sourcemapping | yann300 | 2016-08-02 | 1 | -1/+1 |
| | |||||
* | Bugfix: Correctly use srcmap-runtime. | chriseth | 2016-08-01 | 1 | -1/+1 |
| | |||||
* | Source location as part of AST. | chriseth | 2016-07-21 | 2 | -6/+33 |
| | |||||
* | Provide formal version in json output. | chriseth | 2016-07-19 | 1 | -0/+16 |
| | |||||
* | Store non-canonical version. | chriseth | 2016-07-11 | 1 | -8/+8 |
| | |||||
* | Fix crash for input from stdin. | chriseth | 2016-06-15 | 1 | -1/+2 |
| | |||||
* | Allow remappings to change depending on the context. | chriseth | 2016-06-09 | 3 | -73/+46 |
| | |||||
* | much better and simpler way of handling this | VoR0220 | 2016-05-14 | 1 | -1/+8 |
| | |||||
* | wrap solc add_executable | rainbeam | 2016-05-01 | 1 | -1/+1 |
| | | | | Allows static linking. | ||||
* | Source location for inline assembly. | chriseth | 2016-04-20 | 1 | -1/+1 |
| | |||||
* | Make solidity independent from ethcore. | chriseth | 2016-04-07 | 2 | -5/+5 |
| | |||||
* | rename namespace for instruction.h/cpp in libevmasm | Dimitry | 2016-04-02 | 2 | -4/+4 |
| | |||||
* | move libevmcore to solidity | Dimitry | 2016-04-02 | 2 | -2/+2 |
| | |||||
* | Code generation (missing external access and source locations). | chriseth | 2016-03-30 | 2 | -12/+29 |
| | |||||
* | Parsing for inline assembly. | chriseth | 2016-03-30 | 3 | -10/+60 |
| | |||||
* | BREAKING: Implement delegatecall and make default for library calls. | chriseth | 2016-03-12 | 1 | -1/+1 |
| | |||||
* | Only allow including from allowed directories. | chriseth | 2016-01-30 | 2 | -9/+36 |
| | |||||
* | Merge pull request #370 from chriseth/redirects | chriseth | 2016-01-29 | 2 | -32/+77 |
|\ | | | | | Path remappings for solc. | ||||
| * | Provide remappings for solc. | chriseth | 2016-01-26 | 2 | -32/+77 |
| | | |||||
* | | Read files via callback. | chriseth | 2016-01-27 | 2 | -6/+42 |
|/ | |||||
* | Autoload files in solc. | chriseth | 2016-01-12 | 1 | -1/+12 |
| | |||||
* | Merge pull request #290 from chriseth/fix_gas_iterator | chriseth | 2015-12-10 | 2 | -6/+6 |
|\ | | | | | Fix: Segfaults connected to paramater types. | ||||
| * | Fix: Segfaults connected to paramater types. | chriseth | 2015-12-10 | 2 | -6/+6 |
| | | | | | | | | parameterTypes does not return by const reference anymore. | ||||
* | | Removed obsolete dockerfile. | chriseth | 2015-12-10 | 1 | -70/+0 |
|/ | |||||
* | Fix the build - library is not a module | Lefteris Karapetsas | 2015-12-04 | 1 | -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 Summerwill | 2015-12-04 | 1 | -3/+3 |
| | | | | fully-qualified scoped name in eh_use instead. | ||||
* | Fix up for new API from EIP-1.1. | Gav Wood | 2015-11-21 | 2 | -5/+5 |
| | |||||
* | Preliminary why3 code output. | chriseth | 2015-10-27 | 2 | -25/+48 |
| | |||||
* | File reorganisation. | chriseth | 2015-10-21 | 3 | -20/+20 |
| | |||||
* | Do not forget to export the new symbol. | chriseth | 2015-10-16 | 1 | -1/+1 |
| | |||||
* | Style. | chriseth | 2015-10-16 | 1 | -5/+5 |
| | |||||
* | Multiple sources for json compiler. | chriseth | 2015-10-16 | 1 | -9/+45 |
| | |||||
* | fixed new tests | LianaHus | 2015-10-15 | 1 | -1/+4 |
| | |||||
* | errors instead of exceptions | LianaHus | 2015-10-15 | 1 | -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 errors | LianaHus | 2015-10-15 | 2 | -31/+8 |
| | | | | | Conflicts: libsolidity/Exceptions.h | ||||
* | Support warnings. | chriseth | 2015-10-03 | 1 | -25/+29 |
| | |||||
* | -fixed the warning printing | LianaHus | 2015-10-02 | 1 | -9/+8 |
| | | | | -style fixes | ||||
* | -added warning case to cl compiler | LianaHus | 2015-10-02 | 1 | -1/+5 |
| | | | | -modified warning msg | ||||
* | Merge pull request #89 from chriseth/fixCombinedJson | chriseth | 2015-09-23 | 1 | -2/+6 |
|\ | | | | | Fix "combined json" output. | ||||
| * | Fix "combined json" output. | chriseth | 2015-09-23 | 1 | -2/+6 |
| | | |||||
* | | Error formatting. | chriseth | 2015-09-22 | 2 | -15/+26 |
|/ | |||||
* | Merge pull request #79 from arkpar/cmake | Marek Kotewicz | 2015-09-17 | 1 | -1/+1 |
|\ | | | | | Per project versioning | ||||
| * | per project versioning | arkpar | 2015-09-16 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #75 from chriseth/exportRuntimeBytecodeForJson | chriseth | 2015-09-15 | 1 | -0/+6 |
|\ \ | | | | | | | Export runtime bytecode and version. | ||||
| * | | Export runtime bytecode and version. | chriseth | 2015-09-15 | 1 | -0/+6 |
| | | | |||||
* | | | Merge pull request #73 from chriseth/emscripten | Arkadiy Paronyan | 2015-09-15 | 1 | -2/+8 |
|\| | | | | | | | | Changes required to compile on emscripten target. | ||||
| * | | Changes required to compile on emscripten target. | chriseth | 2015-09-15 | 1 | -2/+8 |
| |/ | |||||
* / | Commandline interface for the linker. | chriseth | 2015-09-12 | 2 | -2/+128 |
|/ | |||||
* | Transition from bytecode to more general linker objects. | chriseth | 2015-09-11 | 2 | -15/+15 |
| | |||||
* | Merge pull request #41 from LianaHus/sol_rename_getters | chriseth | 2015-09-08 | 2 | -60/+60 |
|\ | | | | | solidity interface changes. removing get prefix | ||||
| * | - renamed AST to ast and ABI to abi | LianaHus | 2015-09-08 | 2 | -7/+7 |
| | | | | | | | | - style fixes | ||||
| * | renamed getter functions | LianaHus | 2015-09-08 | 2 | -60/+60 |
| | | |||||
* | | changes required to compile solidity in a single project | debris | 2015-09-01 | 1 | -2/+0 |
|/ | |||||
* | Merge pull request #27 from LianaHus/sol_runtime_binary_by_-solc | Gav Wood | 2015-08-28 | 1 | -1/+14 |
|\ | | | | | added option to solc to output runtime part of the contract | ||||
| * | added option to solc to output runtimr part of the contract | LianaHus | 2015-08-24 | 1 | -1/+14 |
| | | |||||
* | | client refactor | debris | 2015-08-27 | 1 | -6/+1 |
| | | |||||
* | | Refactoreed CMakeLists for new module system | arkpar | 2015-08-24 | 1 | -3/+2 |
|/ | |||||
* | More information for help screen, some fixes for argument parsing. | chriseth | 2015-08-20 | 2 | -76/+86 |
| | |||||
* | Moved solc files. | chriseth | 2015-08-19 | 6 | -0/+1039 |