Невозможно статически связать boost-locale из-за ошибок связывания libicu в Ubuntu 18.04 - PullRequest
0 голосов
/ 10 декабря 2018

Следующий код:

#include <boost/locale.hpp>
int main()
{
    using namespace boost::locale;
    generator gen;
}

Построен со следующими флагами:

g++ -static -static-libstdc++ -pthread main.cpp -lboost_locale -lboost_system -licuuc -licudata -licui18n

Не удается связать со следующими ошибками:

(.text+0x16b8): undefined reference to `icu_60::CacheKeyBase::~CacheKeyBase()'
(.text+0x1c8d): undefined reference to `icu_60::UVector64::~UVector64()'
(.text+0x7dc): undefined reference to `icu_60::UCharsTrie::Iterator::~Iterator()'
...hundreds of other undefined symbols
...(the sample code also has boost linking errors, but let's ignore them, as they only appear in my attempt of reproduction; the real code I have issues with has only icu-related link errors)

I 'm с использованием Ubuntu 18.04, с libboost-all-dev и libicu-dev, установленными из репозиториев Ubuntu.Возможно, мне не хватает какого-то тривиального компонента / флага / библиотеки, необходимого для его связывания, но я не могу его найти.

...