mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #12583 from ethereum/update-solcjs-commands-for-typescript
Compatibility fixes for solc-js TypeScript migration
This commit is contained in:
commit
6f59e228eb
@ -23,6 +23,7 @@ Bugfixes:
|
|||||||
|
|
||||||
Solc-Js:
|
Solc-Js:
|
||||||
* The wrapper now requires at least nodejs v10.
|
* The wrapper now requires at least nodejs v10.
|
||||||
|
* The code has been ported to TypeScript.
|
||||||
|
|
||||||
|
|
||||||
### 0.8.11 (2021-12-20)
|
### 0.8.11 (2021-12-20)
|
||||||
|
@ -66,7 +66,7 @@
|
|||||||
### Release solc-js
|
### Release solc-js
|
||||||
- [ ] Wait until solc-bin was properly deployed. You can test this via remix - a test run through remix is advisable anyway.
|
- [ ] Wait until solc-bin was properly deployed. You can test this via remix - a test run through remix is advisable anyway.
|
||||||
- [ ] Increment the version number, create a pull request for that, merge it after tests succeeded.
|
- [ ] Increment the version number, create a pull request for that, merge it after tests succeeded.
|
||||||
- [ ] Run ``node verifyVersion.js && npm publish`` in the updated ``solc-js`` repository.
|
- [ ] Run ``npm run updateBinary && npm publish`` in the updated ``solc-js`` repository.
|
||||||
- [ ] Create a tag using ``git tag --annotate v$VERSION`` and push it with ``git push --tags``.
|
- [ ] Create a tag using ``git tag --annotate v$VERSION`` and push it with ``git push --tags``.
|
||||||
|
|
||||||
### Post-release
|
### Post-release
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
const process = require('process')
|
const process = require('process')
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
|
|
||||||
const compiler = require('./solc-js/wrapper.js')(require('./solc-js/soljson.js'))
|
const compiler = require('solc')
|
||||||
|
|
||||||
|
|
||||||
function loadSource(sourceFileName, stripSMTPragmas)
|
function loadSource(sourceFileName, stripSMTPragmas)
|
||||||
|
@ -42,11 +42,18 @@ TMPDIR=$(mktemp -d)
|
|||||||
|
|
||||||
if [[ "$SOLC_EMSCRIPTEN" = "On" ]]
|
if [[ "$SOLC_EMSCRIPTEN" = "On" ]]
|
||||||
then
|
then
|
||||||
|
echo "Installing solc-js..."
|
||||||
# npm install solc
|
# npm install solc
|
||||||
git clone --depth 1 https://github.com/ethereum/solc-js.git solc-js
|
git clone --depth 1 https://github.com/ethereum/solc-js.git solc-js
|
||||||
( cd solc-js; npm install )
|
|
||||||
cp "$REPO_ROOT/emscripten_build/libsolc/soljson.js" solc-js/
|
cp "$REPO_ROOT/emscripten_build/libsolc/soljson.js" solc-js/
|
||||||
|
pushd solc-js/
|
||||||
|
npm install
|
||||||
|
npm run build
|
||||||
|
popd
|
||||||
|
|
||||||
cp "$REPO_ROOT/scripts/bytecodecompare/prepare_report.js" .
|
cp "$REPO_ROOT/scripts/bytecodecompare/prepare_report.js" .
|
||||||
|
npm install solc-js/
|
||||||
|
|
||||||
echo "Running the compiler..."
|
echo "Running the compiler..."
|
||||||
# shellcheck disable=SC2035
|
# shellcheck disable=SC2035
|
||||||
./prepare_report.js *.sol > report.txt
|
./prepare_report.js *.sol > report.txt
|
||||||
|
@ -109,6 +109,7 @@ cd "$tmp_dir"
|
|||||||
git clone https://github.com/ethereum/solc-js.git "$solcjs_dir"
|
git clone https://github.com/ethereum/solc-js.git "$solcjs_dir"
|
||||||
cd "$solcjs_dir"
|
cd "$solcjs_dir"
|
||||||
npm install
|
npm install
|
||||||
|
npm run build
|
||||||
|
|
||||||
cd "${solc_bin_dir}/${platform}/"
|
cd "${solc_bin_dir}/${platform}/"
|
||||||
echo "Commit range: ${base_ref}..${top_ref}"
|
echo "Commit range: ${base_ref}..${top_ref}"
|
||||||
@ -147,11 +148,12 @@ for binary_name in $platform_binaries; do
|
|||||||
|
|
||||||
if [[ $platform == emscripten-wasm32 ]] || [[ $platform == emscripten-asmjs ]]; then
|
if [[ $platform == emscripten-wasm32 ]] || [[ $platform == emscripten-asmjs ]]; then
|
||||||
ln -sf "${solc_bin_dir}/${platform}/${binary_name}" "${solcjs_dir}/soljson.js"
|
ln -sf "${solc_bin_dir}/${platform}/${binary_name}" "${solcjs_dir}/soljson.js"
|
||||||
|
ln -sf "${solc_bin_dir}/${platform}/${binary_name}" "${solcjs_dir}/dist/soljson.js"
|
||||||
ln -s "${solcjs_dir}" solc-js
|
ln -s "${solcjs_dir}" solc-js
|
||||||
cp "${script_dir}/bytecodecompare/prepare_report.js" prepare_report.js
|
cp "${script_dir}/bytecodecompare/prepare_report.js" prepare_report.js
|
||||||
|
|
||||||
validate_reported_version \
|
validate_reported_version \
|
||||||
"$(solc-js/solc.js --version)" \
|
"$(solc-js/dist/solc.js --version)" \
|
||||||
"$solidity_version_and_commit"
|
"$solidity_version_and_commit"
|
||||||
|
|
||||||
# shellcheck disable=SC2035
|
# shellcheck disable=SC2035
|
||||||
|
@ -228,6 +228,7 @@ mkdir -p "${OUTPUTDIR}"/bin
|
|||||||
echo "Prepare solc-js."
|
echo "Prepare solc-js."
|
||||||
cd /root/solc-js
|
cd /root/solc-js
|
||||||
npm install >/dev/null 2>&1
|
npm install >/dev/null 2>&1
|
||||||
|
npm run build >/dev/null 2>&1
|
||||||
|
|
||||||
echo "Install semver helper."
|
echo "Install semver helper."
|
||||||
npm install -g semver >/dev/null 2>&1
|
npm install -g semver >/dev/null 2>&1
|
||||||
|
@ -84,7 +84,8 @@ function setup_solc
|
|||||||
pushd "$install_dir"
|
pushd "$install_dir"
|
||||||
npm install
|
npm install
|
||||||
cp "$binary_path" soljson.js
|
cp "$binary_path" soljson.js
|
||||||
SOLCVERSION=$(./solc.js --version)
|
npm run build
|
||||||
|
SOLCVERSION=$(dist/solc.js --version)
|
||||||
popd
|
popd
|
||||||
else
|
else
|
||||||
printLog "Setting up solc..."
|
printLog "Setting up solc..."
|
||||||
|
Loading…
Reference in New Issue
Block a user