From 3e2a67bdb0673581a97506262e62db098efef6d7 Mon Sep 17 00:00:00 2001 From: Dmitry Kasatkin Date: Thu, 1 Oct 2015 19:28:23 +0300 Subject: [PATCH] script to build static evmctl version Signed-off-by: Dmitry Kasatkin --- build-static.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 build-static.sh diff --git a/build-static.sh b/build-static.sh new file mode 100755 index 0000000..d6d420b --- /dev/null +++ b/build-static.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +gcc -static -o evmctl.static -include config.h src/evmctl.c src/libimaevm.c -lcrypto -lkeyutils -ldl +