You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 7, 2022. It is now read-only.
I'm trying to build logdevice on ubuntu 19.10 following instructions on logdevice.io and I found a couple of issues. Any hints on what I'm doing wrong and how other ppl manage to do it? To make it behave a bit closer to Ubuntu 18 I tried to switch compilers to gcc-7/8/clang but to no avail.
Issue 1: when compiling thrift it fails because of underlying folly issue with SDT tracepoints. That could be worked around by disabling tracepoints with flags on fbthrift (-DFOLLY_DISABLE_SDT in build-fbthrift.cmake) or by patching folly (Changed tracepoint info section to inherit section group facebook/folly#1396).
Issue 2: thrift target in cmake omits -fPIC option and that breaks building shared libs, worked around with add_compile_options(-fPIC) to admin/if/CMakeLists.txt and admin/if/for_open_source.