From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp16.mail.ru (smtp16.mail.ru [94.100.176.153]) (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 E1B22441840 for ; Wed, 1 Apr 2020 12:56:03 +0300 (MSK) Date: Wed, 1 Apr 2020 12:56:01 +0300 From: Sergey Bronnikov Message-ID: <20200401095601.GD11949@pony.bronevichok.ru> References: <456b2851ac23fa58fd1498d20888e72ce67d63f7.1575976611.git.avtikhon@tarantool.org> <20191218122127.GR1214@tarantool.org> <1576747591.699179873@f421.i.mail.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1576747591.699179873@f421.i.mail.ru> Subject: Re: [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 Tikhonov Cc: tarantool-patches@dev.tarantool.org LGTM On 12:26 Thu 19 Dec , Alexander Tikhonov wrote: > Igor, thanks for the review, I've made comment correction as you suggested. > > > >Среда, 18 декабря 2019, 15:23 +03:00 от Igor Munkin : > > > >Sasha, > > > >Thanks, the changes LGTM except the one minor comment: I guess it's > >preferable to have a sole 'build:' tag for any patch related to the > >build system. Feel free to ignore and proceed if Sasha Tu. (he's already > >CCed as a second reviewer) has no remarks to the subj. > > > >On 10.12.19, Alexander V. Tikhonov wrote: > >> 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 > >> > > > >-- > >Best regards, > >IM > > > -- > Alexander Tikhonov -- sergeyb@