From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 448524696C1 for ; Tue, 10 Dec 2019 14:21:38 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Tue, 10 Dec 2019 14:21:29 +0300 Message-Id: <456b2851ac23fa58fd1498d20888e72ce67d63f7.1575976611.git.avtikhon@tarantool.org> In-Reply-To: References: In-Reply-To: References: Subject: [Tarantool-patches] [PATCH v2 1/5] static build: speedup build List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Turenko Cc: tarantool-patches@dev.tarantool.org Added '-j' option to make for tools buildings, it decreased build time in 4 times. --- Dockerfile.staticbuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.staticbuild b/Dockerfile.staticbuild index d63c18bd1..8da8ae304 100644 --- a/Dockerfile.staticbuild +++ b/Dockerfile.staticbuild @@ -44,7 +44,7 @@ RUN set -x && \ tar -xvf openssl-1.1.0h.tar.gz && \ cd openssl-1.1.0h && \ ./config --libdir=lib && \ - make && make install + make -j && make install RUN set -x && \ cd / && \ @@ -52,7 +52,7 @@ RUN set -x && \ tar -xvf icu4c-62_1-src.tgz && \ cd icu/source && \ ./configure --with-data-packaging=static --enable-static --enable-shared && \ - make && make install + make -j && make install RUN set -x && \ cd / && \ @@ -60,7 +60,7 @@ RUN set -x && \ tar -xvf libunwind-1.3-rc1.tar.gz && \ cd libunwind-1.3-rc1 && \ ./configure --enable-static --enable-shared && \ - make && make install + make -j && make install COPY . /tarantool -- 2.17.1