diff options
author | Paweł Bylica <chfast@gmail.com> | 2017-08-23 04:50:03 +0800 |
---|---|---|
committer | Paweł Bylica <chfast@gmail.com> | 2017-08-23 04:50:25 +0800 |
commit | 4974ff3962759a19150877b0e59e64319190ba1d (patch) | |
tree | c0a96c8d0037de5ef64c44d33a7683598216970d /scripts | |
parent | 15fd43f0357e1f3c6ec1262df6ee39b06a6fe3f9 (diff) | |
download | dexon-solidity-4974ff3962759a19150877b0e59e64319190ba1d.tar.gz dexon-solidity-4974ff3962759a19150877b0e59e64319190ba1d.tar.zst dexon-solidity-4974ff3962759a19150877b0e59e64319190ba1d.zip |
CMake: Add option to static link solc
Diffstat (limited to 'scripts')
-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 &&\ |