Tarantool development patches archive
 help / color / mirror / Atom feed
From: Kirill Yukhin <kyukhin@tarantool.org>
To: "Alexander V. Tikhonov" <avtikhon@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: Re: [Tarantool-patches] [PATCH v2] static build: create new build w/o dockerfile
Date: Thu, 2 Apr 2020 13:40:54 +0300	[thread overview]
Message-ID: <20200402104054.rzkgsvwwigiqzrua@tarantool.org> (raw)
In-Reply-To: <550dd2918764269f001232814fb36b20409fcf2a.1575982467.git.avtikhon@tarantool.org>

Hello,

On 10 дек 16:11, Alexander V. Tikhonov wrote:
> Fixed static build with '-DBUILD_STATIC=ON' option:
> 
>  - installed liblzma-dev library for libunwind static, due to found that
>    static libunwind library uses undefined lzma functions:
>      nm -a /usr/lib/x86_64-linux-gnu/libunwind-x86_64.a | grep lzma
>                  U lzma_index_buffer_decode
>                  U lzma_index_end
>                  U lzma_index_size
>                  U lzma_index_uncompressed_size
>                  U lzma_stream_buffer_decode
>                  U lzma_stream_footer_decode
>    while dynamic libunwind correctly sees liblzma installed:
>      ldd /usr/lib/x86_64-linux-gnu/libunwind-x86_64.so | grep lzma
>        liblzma.so.5 => /lib/x86_64-linux-gnu/liblzma.so.5 (0x00007f8fd1c23000)
>    so to fix it the static library of lzma was needed.
> 
>  - added lzma library to unwind library for Tarantool build at file:
>      cmake/compiler.cmake
>    due to fail:
>      /usr/lib/x86_64-linux-gnu/libunwind-x86_64.a(elf64.o):
>        In function `xz_uncompressed_size':
>      ./src/elfxx.c:194: undefined reference to `lzma_stream_footer_decode'
>      ./src/elfxx.c:201: undefined reference to `lzma_index_buffer_decode'
>      ./src/elfxx.c:205: undefined reference to `lzma_index_size'
>      ./src/elfxx.c:210: undefined reference to `lzma_index_end'
>      ./src/elfxx.c:207: undefined reference to `lzma_index_uncompressed_size'
>      ./src/elfxx.c:210: undefined reference to `lzma_index_end'
>      /usr/lib/x86_64-linux-gnu/libunwind-x86_64.a(elf64.o):
>        In function `_Uelf64_extract_minidebuginfo':
>      ./src/elfxx.c:278: undefined reference to `lzma_stream_buffer_decode'
>      collect2: error: ld returned 1 exit status
>      test/unit/CMakeFiles/luaL_iterator.test.dir/build.make:134:
>        recipe for target 'test/unit/luaL_iterator.test' failed
>      make[2]: *** [test/unit/luaL_iterator.test] Error 1
> 
>  - added dl library to gomp library for test/unit tests
>    binaries builds at file:
>      cmake/BuildMisc.cmake
>    due to fail:
>      /usr/lib/gcc/x86_64-linux-gnu/7/libgomp.a(target.o):(.text+0x34d):
>        more undefined references to `dlsym' follow
>      /usr/lib/gcc/x86_64-linux-gnu/7/libgomp.a(target.o): In function
>        `gomp_target_init':
>      (.text+0x9cc): undefined reference to `dlerror'
>      collect2: error: ld returned 1 exit status
> 
>   - added dl library to icu library for test/unit tests
>    binaries builds at file:
>      cmake/FindICU.cmake
>    due to fail:
>      /usr/x86_64-linux-gnu/libicuuc.a(putil.ao):
>        In function `uprv_dl_open_60':
>      (.text+0x1ce2): undefined reference to `dlopen'
>      /usr/x86_64-linux-gnu/libicuuc.a(putil.ao):
>        In function `uprv_dlsym_func_60':
>      (.text+0x1d3d): undefined reference to `dlsym'
>      /usr/x86_64-linux-gnu/libicuuc.a(putil.ao):
>        In function `uprv_dl_close_60':
>      (.text+0x1d21): undefined reference to `dlclose'
>      collect2: error: ld returned 1 exit status
> 
> Added static build to gitlab-ci in release check criteria named
> as static_build job. Previously named static_build job renamed to
> static_docker_build, due to it checks the build at Dockerfile.
> 
> Also moved static build make targets from .gitlab.mk to .travis.mk
> to store it in common place with the other test/build make targets.
> Moved environement from .gitlab-ci.yml file into make targets to
> make this targets true building in static w/o additional setup.
> 
> Close #4551
> ---
> 
> Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-4551-static-build-full-ci
> Issue: https://github.com/tarantool/tarantool/issues/4551

I've checked your patch into 2.3 and master.

--
Regards, Kirill Yukhin

  parent reply	other threads:[~2020-04-02 10:40 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-10 13:11 Alexander V. Tikhonov
2019-12-19 12:43 ` Igor Munkin
2019-12-19 16:53   ` Alexander Tikhonov
2019-12-19 16:55     ` Alexander Tikhonov
2020-04-01  9:59     ` Sergey Bronnikov
2020-04-02 10:40 ` Kirill Yukhin [this message]
2020-04-02 11:24   ` Kirill Yukhin
  -- strict thread matches above, loose matches on Subject: below --
2019-12-10 11:21 Alexander V. Tikhonov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200402104054.rzkgsvwwigiqzrua@tarantool.org \
    --to=kyukhin@tarantool.org \
    --cc=avtikhon@tarantool.org \
    --cc=tarantool-patches@dev.tarantool.org \
    --subject='Re: [Tarantool-patches] [PATCH v2] static build: create new build w/o dockerfile' \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox