From 01d3417d5fc57b2b114bcc07f0c48e41f922bcde Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 14 Dec 2015 18:09:50 +0100 Subject: Add -EVMJIT=0 --- docs/installing-solidity.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installing-solidity.rst b/docs/installing-solidity.rst index 83c7ac18..efb0f106 100644 --- a/docs/installing-solidity.rst +++ b/docs/installing-solidity.rst @@ -115,7 +115,7 @@ they relate only to Alethzero and Mix git clone --recursive https://github.com/ethereum/webthree-umbrella.git cd webthree-umbrella ./webthree-helpers/scripts/ethupdate.sh --no-push --simple-pull --project solidity # update Solidity repo - ./webthree-helpers/scripts/ethbuild.sh --no-git --project solidity --all --cores 4 # build Solidity + ./webthree-helpers/scripts/ethbuild.sh --no-git --project solidity --all -EVMJIT=0 --cores 4 # build Solidity If you opted to install Alethzero and Mix: -- cgit From ed1dd50acda058a9c0c5b9c43776fba3642e23e2 Mon Sep 17 00:00:00 2001 From: RJ Catalano Date: Wed, 16 Dec 2015 17:26:41 -0600 Subject: changed error message --- libsolidity/parsing/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsolidity/parsing/Parser.cpp b/libsolidity/parsing/Parser.cpp index c7b2bb50..caf38b1d 100644 --- a/libsolidity/parsing/Parser.cpp +++ b/libsolidity/parsing/Parser.cpp @@ -1051,7 +1051,7 @@ ASTPointer Parser::parsePrimaryExpression() if (m_scanner->currentToken() != Token::Comma && m_scanner->currentToken() != oppositeToken) components.push_back(parseExpression()); else if (isArray) - parserError(std::string("Expected value in array cell after")); + parserError("Expected expression (inline array elements cannot be omitted)."); else components.push_back(ASTPointer()); if (m_scanner->currentToken() == oppositeToken) -- cgit