diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-23 19:36:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-23 19:36:24 +0800 |
commit | 3b07c4d38e40c52ee8a4d16e56e2afa1a0f27905 (patch) | |
tree | 3af9644b27a6fd453610d26ffe65bf4ca98d9aa9 /scripts/Dockerfile | |
parent | c5f11d938f6670d9dbe0d7212097089c757fd91a (diff) | |
parent | 09628dee8c86e71119884204eb729fe439fb3bad (diff) | |
download | dexon-solidity-3b07c4d38e40c52ee8a4d16e56e2afa1a0f27905.tar.gz dexon-solidity-3b07c4d38e40c52ee8a4d16e56e2afa1a0f27905.tar.zst dexon-solidity-3b07c4d38e40c52ee8a4d16e56e2afa1a0f27905.zip |
Merge pull request #2757 from ethereum/cmake
Static linking
Diffstat (limited to 'scripts/Dockerfile')
-rw-r--r-- | scripts/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Dockerfile b/scripts/Dockerfile index c984ce99..654a9f29 100644 --- a/scripts/Dockerfile +++ b/scripts/Dockerfile @@ -9,7 +9,7 @@ COPY / $WORKDIR #Install dependencies, eliminate annoying warnings, and build release, delete all remaining points and statically link. RUN ./scripts/install_deps.sh && sed -i -E -e 's/include <sys\/poll.h>/include <poll.h>/' /usr/include/boost/asio/detail/socket_types.hpp &&\ -cmake -DCMAKE_BUILD_TYPE=Release -DTESTS=0 -DSTATIC_LINKING=1 &&\ +cmake -DCMAKE_BUILD_TYPE=Release -DTESTS=0 -DSOLC_LINK_STATIC=1 &&\ make solc && install -s solc/solc /usr/bin &&\ cd / && rm -rf solidity &&\ apk del sed build-base git make cmake gcc g++ musl-dev curl-dev boost-dev &&\ |