Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linking problems with latest libboost #445

Closed
Quix0r opened this issue Jan 15, 2016 · 14 comments
Closed

Linking problems with latest libboost #445

Quix0r opened this issue Jan 15, 2016 · 14 comments
Labels
category:bug The Issue/PR describes or solves a perceived malfunction within the game.

Comments

@Quix0r
Copy link

Quix0r commented Jan 15, 2016

I currently have this linking problem when it comes to linking executables:

[ 63%] Linking CXX executable ../freeoriond
CMakeFiles/freeoriond.dir/SaveLoad.cpp.o: In function `boost::archive::detail::common_oarchive<boost::archive::binary_oarchive>::vsave(boost::archive::class_name_type const&)':
/usr/include/boost/archive/detail/oserializer.hpp:88: undefined reference to `boost::archive::basic_binary_oprimitive<boost::archive::binary_oarchive, char, std::char_traits<char> >::save(std::string const&)'
CMakeFiles/freeoriond.dir/SaveLoad.cpp.o: In function `boost::archive::detail::oserializer<boost::archive::binary_oarchive, PlayerSaveGameData>::save_object_data(boost::archive::detail::basic_oarchive&, void const*) const':
/usr/include/boost/archive/detail/oserializer.hpp:88: undefined reference to `boost::archive::basic_binary_oprimitive<boost::archive::binary_oarchive, char, std::char_traits<char> >::save(std::string const&)'
/usr/include/boost/archive/detail/oserializer.hpp:88: undefined reference to `boost::archive::basic_binary_oprimitive<boost::archive::binary_oarchive, char, std::char_traits<char> >::save(std::string const&)'
CMakeFiles/freeoriond.dir/SaveLoad.cpp.o: In function `boost::archive::detail::iserializer<boost::archive::xml_iarchive, PlayerSaveGameData>::load_object_data(boost::archive::detail::basic_iarchive&, void*, unsigned int) const':
/usr/include/boost/archive/detail/iserializer.hpp:103: undefined reference to `boost::archive::xml_iarchive_impl<boost::archive::xml_iarchive>::load(std::string&)'
/usr/include/boost/archive/detail/iserializer.hpp:103: undefined reference to `boost::archive::xml_iarchive_impl<boost::archive::xml_iarchive>::load(std::string&)'
CMakeFiles/freeoriond.dir/SaveLoad.cpp.o: In function `boost::archive::detail::oserializer<boost::archive::xml_oarchive, PlayerSaveGameData>::save_object_data(boost::archive::detail::basic_oarchive&, void const*) const':
/usr/include/boost/archive/detail/oserializer.hpp:88: undefined reference to `boost::archive::xml_oarchive_impl<boost::archive::xml_oarchive>::save(std::string const&)'
/usr/include/boost/archive/detail/oserializer.hpp:88: undefined reference to `boost::archive::xml_oarchive_impl<boost::archive::xml_oarchive>::save(std::string const&)'
CMakeFiles/freeoriond.dir/SaveLoad.cpp.o: In function `boost::archive::detail::iserializer<boost::archive::binary_iarchive, PlayerSaveGameData>::load_object_data(boost::archive::detail::basic_iarchive&, void*, unsigned int) const':
/usr/include/boost/archive/detail/iserializer.hpp:103: undefined reference to `boost::archive::basic_binary_iprimitive<boost::archive::binary_iarchive, char, std::char_traits<char> >::load(std::string&)'
/usr/include/boost/archive/detail/iserializer.hpp:103: undefined reference to `boost::archive::basic_binary_iprimitive<boost::archive::binary_iarchive, char, std::char_traits<char> >::load(std::string&)'
../libfreeorioncommon.so: undefined reference to `void boost::log::v2_mt_posix::aux::put_integer<char>(std::basic_string<char, std::char_traits<char>, std::allocator<char> >&, unsigned int, unsigned int, char)'
../libfreeorioncommon.so: undefined reference to `boost::log::v2_mt_posix::sinks::text_file_backend::consume(boost::log::v2_mt_posix::record_view const&, std::string const&)'
../libfreeorioncommon.so: undefined reference to `boost::log::v2_mt_posix::aux::code_convert(wchar_t const*, unsigned long, std::string&, std::locale const&)'
../libfreeorioncommon.so: undefined reference to `boost::filesystem::path_traits::dispatch(boost::filesystem::directory_entry const&, std::string&)'
collect2: error: ld returned 1 exit status
distcc[14459] ERROR: compile (null) on localhost failed
server/CMakeFiles/freeoriond.dir/build.make:426: recipe for target 'freeoriond' failed
make[2]: *** [freeoriond] Error 1
CMakeFiles/Makefile2:340: recipe for target 'server/CMakeFiles/freeoriond.dir/all' failed
make[1]: *** [server/CMakeFiles/freeoriond.dir/all] Error 2
Makefile:149: recipe for target 'all' failed
make: *** [all] Error 2
user@host:~/git/build/freeorion$

GCC:
gcc version 5.3.1 20151207 (Debian 5.3.1-3)
libboost: 1.58.0.1

@geoffthemedio
Copy link
Member

Linking against 1.58 works fine for me on Windows.

Why do you call it the latest version, though? The boost site shows 1.60 as the latest release.

@codekiddy2
Copy link

I had similar link problem with boost 1.60, and the cause was missing macro definition during FO build.

I used following macros to fix the issue:

#define BOOST_ALL_NO_LIB 1   // do not auto link, instead you link manually to your import libraries.
#define BOOST_ALL_DYN_LINK 1 // tells you will link to shared libraries
#define BOOST_LOG_DYN_LINK 1 // explicitly says to link boost::log symbols to shared libraries

First macro puts "control" into your hands,
The second macro is supposed to link all shared libs only, but still it didn't work in my case, hence the 3rd explicit macro which fixed the issue.

@Quix0r
Copy link
Author

Quix0r commented Jan 16, 2016

@codekiddy2 Where did you add them?
@geoffthemedio It is the "latest distro version" I can get.

@codekiddy2
Copy link

You need to define these macros during compilation step, that is provide them to g++ compiler on command line.

ex:
g++ -DBOOST_ALL_NO_LIB -DBOOST_ALL_DYN_LINK -DBOOST_LOG_DYN_LINK

If you use cmake to compile, the easy way is to supply these macros into "cmake-gui" by adding new "entry" prior to configuration.

On command line it is done like this:
https://cmake.org/cmake/help/v3.0/command/add_definitions.html

make sure your distro supplies shared boost libraries, otherwise this won't work.
In addition you will need to supply lib names to linker. to skip this part omit BOOST_ALL_NO_LIB

edit:
assuming boost auto linking is supported on linux, in which case lib names don't need to be supplied to linker. I'm on Windows so I can't tell.

@Quix0r
Copy link
Author

Quix0r commented Jan 16, 2016

Thank you. I let you know how it comes out. :)

Yes, linking again. 💃

@Vezzra Vezzra added the category:bug The Issue/PR describes or solves a perceived malfunction within the game. label Jan 16, 2016
@Vezzra Vezzra added this to the Next release milestone Jan 16, 2016
@Vezzra
Copy link
Member

Vezzra commented Jan 16, 2016

Ok, I assume that means the issue is solved.

@codekiddy2, thanks for the assist 😃

@Vezzra Vezzra closed this as completed Jan 16, 2016
@Quix0r
Copy link
Author

Quix0r commented Jan 16, 2016

I want to share my changes here. Sorry that I don't know much in C++.

Done. Na, I forgot to add the issue number in my message. :-(

@Vezzra ID: 6a63e3d

@geoffthemedio
Copy link
Member

Can / should these defines be pre-added by the CMakeLists.txt files?

@codekiddy2
Copy link

With these defines linker will search for dll import libs, and those who built static boost libs only, will need to either build shared version of boost or modify Cmake files to link statically.

To make sure Cmake build works for everyone, Cmake files can be configured so that end user is given a choice for static link.

Sorry, I'm not sure how to properly modify Cmake files so I'm sharing my opinion here instead:

if (NOT FO_BOOST_STATIC_LINK)
add_definitions(-DBOOST_ALL_NO_LIB -DBOOST_ALL_DYN_LINK -DBOOST_LOG_DYN_LINK)
endif()

Now those who want static link simply invoke:

cmake -DFO_BOOST_STATIC_LINK=TRUE

@Vezzra
Copy link
Member

Vezzra commented Jan 17, 2016

@Quix0r, I've provided a PR that implements the fix at least for building on Linux: #449. Can you try to build Fo on your system with just that PR and no further modifications added by you?

@Quix0r
Copy link
Author

Quix0r commented Jan 18, 2016

Yes, that fix alone works as well. :) I have deleted my repository to not spread bad code.

@Vezzra
Copy link
Member

Vezzra commented Jan 22, 2016

Yes, that fix alone works as well. :)

Very good. I've created another PR with a better fix: #452. @Quix0r, can you test that one too, if it fixes the issue for you?

@madjestic
Copy link

madjestic commented Dec 5, 2017

Hey guys,

I've tried building freeorion-0.4.7.1-r1 against boost-1.63.0 and it fails at linking stage with:

[100%] Linking CXX executable freeorion
/usr/bin/cmake -E cmake_link_script CMakeFiles/freeorion.dir/link.txt --verbose=1
/usr/bin/x86_64-pc-linux-gnu-g++  -march=native -O2 -pipe  -Wl,-O1 -Wl,--as-needed -rdynamic CMakeFiles/freeorion.dir/client/human/chmain.cpp.o CMakeFiles/freeorion.dir/client/human/HumanClientApp.cpp.o CMakeFiles/freeorion.dir/client/human/HumanClientFSM.cpp.o CMakeFiles/freeorion.dir/client/ClientApp.cpp.o CMakeFiles/freeorion.dir/client/ClientFSMEvents.cpp.o CMakeFiles/freeorion.dir/combat/CombatSystem.cpp.o CMakeFiles/freeorion.dir/network/ClientNetworking.cpp.o CMakeFiles/freeorion.dir/UI/CombatReport/GraphicalSummary.cpp.o CMakeFiles/freeorion.dir/UI/CombatReport/CombatLogWnd.cpp.o CMakeFiles/freeorion.dir/UI/CombatReport/CombatReportData.cpp.o CMakeFiles/freeorion.dir/UI/CombatReport/CombatReportWnd.cpp.o CMakeFiles/freeorion.dir/UI/About.cpp.o CMakeFiles/freeorion.dir/UI/AccordionPanel.cpp.o CMakeFiles/freeorion.dir/UI/BuildDesignatorWnd.cpp.o CMakeFiles/freeorion.dir/UI/BuildingsPanel.cpp.o CMakeFiles/freeorion.dir/UI/CensusBrowseWnd.cpp.o CMakeFiles/freeorion.dir/UI/ChatWnd.cpp.o CMakeFiles/freeorion.dir/UI/ClientUI.cpp.o CMakeFiles/freeorion.dir/UI/CUIControls.cpp.o CMakeFiles/freeorion.dir/UI/CUIDrawUtil.cpp.o CMakeFiles/freeorion.dir/UI/CUILinkTextBlock.cpp.o CMakeFiles/freeorion.dir/UI/CUIStyle.cpp.o CMakeFiles/freeorion.dir/UI/CUIWnd.cpp.o CMakeFiles/freeorion.dir/UI/DesignWnd.cpp.o CMakeFiles/freeorion.dir/UI/EncyclopediaDetailPanel.cpp.o CMakeFiles/freeorion.dir/UI/FieldIcon.cpp.o CMakeFiles/freeorion.dir/UI/FleetButton.cpp.o CMakeFiles/freeorion.dir/UI/FleetWnd.cpp.o CMakeFiles/freeorion.dir/UI/GalaxySetupWnd.cpp.o CMakeFiles/freeorion.dir/UI/GraphControl.cpp.o CMakeFiles/freeorion.dir/UI/Hotkeys.cpp.o CMakeFiles/freeorion.dir/UI/IconTextBrowseWnd.cpp.o CMakeFiles/freeorion.dir/UI/InGameMenu.cpp.o CMakeFiles/freeorion.dir/UI/IntroScreen.cpp.o CMakeFiles/freeorion.dir/UI/LinkText.cpp.o CMakeFiles/freeorion.dir/UI/MapWnd.cpp.o CMakeFiles/freeorion.dir/UI/MeterBrowseWnd.cpp.o CMakeFiles/freeorion.dir/UI/MilitaryPanel.cpp.o CMakeFiles/freeorion.dir/UI/ModeratorActionsWnd.cpp.o CMakeFiles/freeorion.dir/UI/MultiIconValueIndicator.cpp.o CMakeFiles/freeorion.dir/UI/MultiMeterStatusBar.cpp.o CMakeFiles/freeorion.dir/UI/MultiplayerLobbyWnd.cpp.o CMakeFiles/freeorion.dir/UI/ObjectListWnd.cpp.o CMakeFiles/freeorion.dir/UI/OptionsWnd.cpp.o CMakeFiles/freeorion.dir/UI/PlayerListWnd.cpp.o CMakeFiles/freeorion.dir/UI/PopulationPanel.cpp.o CMakeFiles/freeorion.dir/UI/ProductionWnd.cpp.o CMakeFiles/freeorion.dir/UI/QueueListBox.cpp.o CMakeFiles/freeorion.dir/UI/ResearchWnd.cpp.o CMakeFiles/freeorion.dir/UI/ResourceBrowseWnd.cpp.o CMakeFiles/freeorion.dir/UI/ResourcePanel.cpp.o CMakeFiles/freeorion.dir/UI/SaveFileDialog.cpp.o CMakeFiles/freeorion.dir/UI/ServerConnectWnd.cpp.o CMakeFiles/freeorion.dir/UI/ShaderProgram.cpp.o CMakeFiles/freeorion.dir/UI/ShipDesignPanel.cpp.o CMakeFiles/freeorion.dir/UI/SidePanel.cpp.o CMakeFiles/freeorion.dir/UI/SitRepPanel.cpp.o CMakeFiles/freeorion.dir/UI/Sound.cpp.o CMakeFiles/freeorion.dir/UI/SpecialsPanel.cpp.o CMakeFiles/freeorion.dir/UI/SystemIcon.cpp.o CMakeFiles/freeorion.dir/UI/SystemResourceSummaryBrowseWnd.cpp.o CMakeFiles/freeorion.dir/UI/TechTreeArcs.cpp.o CMakeFiles/freeorion.dir/UI/TechTreeLayout.cpp.o CMakeFiles/freeorion.dir/UI/TechTreeWnd.cpp.o CMakeFiles/freeorion.dir/UI/TextBrowseWnd.cpp.o CMakeFiles/freeorion.dir/util/DependencyVersions.cpp.o  -o freeorion libfreeorioncommon.so libfreeorionparse.so libGiGiSDL.so -lGL -lGLU -lopenal -Wl,-Bstatic -lSDL2main -Wl,-Bdynamic -lSDL2 -logg -lvorbis -lvorbisenc -lvorbisfile -lz -lboost_locale-mt -lpthread -lboost_iostreams-mt -lboost_serialization-mt libGiGi.so -lboost_date_time-mt -lboost_filesystem-mt -lboost_log-mt -lboost_regex-mt -lboost_signals-mt -lboost_system-mt -lboost_thread-mt -lboost_chrono-mt -lboost_atomic-mt -lboost_log_setup-mt -lfreetype -lpng -lGL -lGLU -lGLEW -lz 
libGiGi.so: undefined reference to boost::re_detail_106300::cpp_regex_traits_implementation<char>::transform_primary[abi:cxx11](char const*, char const*) const'
libGiGi.so: undefined reference to boost::re_detail_106300::cpp_regex_traits_implementation<char>::transform[abi:cxx11](char const*, char const*) const'
collect2: error: ld returned 1 exit status
make[2]: *** [CMakeFiles/freeorion.dir/build.make:1818: freeorion] Error 1
make[2]: Leaving directory '/tmp/portage/games-strategy/freeorion-0.4.7.1-r1/work/freeorion-0.4.7.1_build'
make[1]: *** [CMakeFiles/Makefile2:215: CMakeFiles/freeorion.dir/all] Error 2
make[1]: Leaving directory '/tmp/portage/games-strategy/freeorion-0.4.7.1-r1/work/freeorion-0.4.7.1_build'
make: *** [Makefile:152: all] Error 2
 * ERROR: games-strategy/freeorion-0.4.7.1-r1::gentoo failed (compile phase):
 *   emake failed

and here's emerge --info '=games-strategy/freeorion-0.4.7.1-r1::gentoo' output, if you find that useful:

Portage 2.3.13 (python 2.7.14-final-0, default/linux/amd64/13.0/desktop, gcc-6.4.0, glibc-2.25-r9, 4.12.12-gentoo x86_64)
=================================================================
                         System Settings
=================================================================
System uname: Linux-4.12.12-gentoo-x86_64-Intel-R-_Core-TM-_i5-3230M_CPU_@_2.60GHz-with-gentoo-2.4.1
KiB Mem:    15993636 total,   5950264 free
KiB Swap:     524284 total,    524284 free
Timestamp of repository gentoo: Mon, 04 Dec 2017 12:00:01 +0000
Head commit of repository gentoo: e20b9a2e6dc90668626ab08db3d8225d0f5d1a2a
sh bash 4.3_p48-r1
ld GNU ld (Gentoo 2.29.1 p3) 2.29.1
app-shells/bash:          4.3_p48-r1::gentoo
dev-java/java-config:     2.2.0-r3::gentoo
dev-lang/perl:            5.24.3::gentoo
dev-lang/python:          2.7.14::gentoo, 3.4.5::gentoo, 3.5.4::gentoo
dev-util/cmake:           3.10.0::gentoo
dev-util/pkgconfig:       0.29.2::gentoo
sys-apps/baselayout:      2.4.1-r2::gentoo
sys-apps/openrc:          0.34.11::gentoo
sys-apps/sandbox:         2.10-r4::gentoo
sys-devel/autoconf:       2.13::gentoo, 2.69::gentoo
sys-devel/automake:       1.15.1-r1::gentoo
sys-devel/binutils:       2.29.1-r1::gentoo
sys-devel/gcc:            6.4.0::gentoo
sys-devel/gcc-config:     1.8-r1::gentoo
sys-devel/libtool:        2.4.6-r3::gentoo
sys-devel/make:           4.2.1::gentoo
sys-kernel/linux-headers: 4.4::gentoo (virtual/os-headers)
sys-libs/glibc:           2.25-r9::gentoo
Repositories:

gentoo
    location: /usr/portage
    sync-type: rsync
    sync-uri: rsync://rsync.gentoo.org/gentoo-portage
    priority: -1000
    sync-rsync-extra-opts: 

madjestic
    location: /usr/local/portage
    masters: gentoo

archenroot
    location: /var/lib/layman/archenroot
    sync-type: laymansync
    sync-uri: https://github.com/archenroot/gentoo-overlay.git
    masters: gentoo
    priority: 50

bumblebee
    location: /var/lib/layman/bumblebee
    sync-type: laymansync
    sync-uri: git://github.com/Bumblebee-Project/bumblebee-gentoo
    masters: gentoo
    priority: 50

gamerlay
    location: /var/lib/layman/gamerlay
    sync-type: laymansync
    sync-uri: git://anongit.gentoo.org/proj/gamerlay.git
    masters: gentoo
    priority: 50

gentoo-zh
    location: /var/lib/layman/gentoo-zh
    sync-type: laymansync
    sync-uri: git://github.com/microcai/gentoo-zh.git
    masters: gentoo
    priority: 50

haskell
    location: /var/lib/layman/haskell
    sync-type: laymansync
    sync-uri: git://github.com/gentoo-haskell/gentoo-haskell.git
    masters: gentoo
    priority: 50

kde
    location: /var/lib/layman/kde
    sync-type: laymansync
    sync-uri: git://anongit.gentoo.org/proj/kde.git
    masters: gentoo
    priority: 50

raiagent
    location: /var/lib/layman/raiagent
    sync-type: laymansync
    sync-uri: git://github.com/leycec/raiagent.git
    masters: gentoo
    priority: 50

rion
    location: /var/lib/layman/rion
    sync-type: laymansync
    sync-uri: https://github.com/rion-overlay/rion-overlay.git
    masters: gentoo
    priority: 50

steam-overlay
    location: /var/lib/layman/steam-overlay
    sync-type: laymansync
    sync-uri: git://github.com/anyc/steam-overlay.git
    masters: gentoo
    priority: 50

stuff
    location: /var/lib/layman/stuff
    sync-type: laymansync
    sync-uri: https://github.com/istitov/stuff.git
    masters: gentoo
    priority: 50

ACCEPT_KEYWORDS="amd64"
ACCEPT_LICENSE="* -@EULA"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-march=native -O2 -pipe"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/games/angband/gamedata/ /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo /etc/texmf/language.dat.d /etc/texmf/language.def.d /etc/texmf/updmap.d /etc/texmf/web2c"
CXXFLAGS="-march=native -O2 -pipe"
DISTDIR="/usr/portage/distfiles"
FCFLAGS="-O2 -pipe"
FEATURES="assume-digests binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles merge-sync multilib-strict news parallel-fetch preserve-libs protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
FFLAGS="-O2 -pipe"
GENTOO_MIRRORS="rsync://mirror.leaseweb.com/gentoo/ http://mirror.leaseweb.com/gentoo/ ftp://mirror.leaseweb.com/gentoo/ ftp://ftp.snt.utwente.nl/pub/os/linux/gentoo http://ftp.snt.utwente.nl/pub/os/linux/gentoo rsync://ftp.snt.utwente.nl/gentoo"
LANG="en_US.utf8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
MAKEOPTS="-j5"
PKGDIR="/usr/portage/packages"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git"
PORTAGE_TMPDIR="/tmp"
USE="X a52 aac acl acpi alsa amd64 berkdb bluetooth branding bzip2 cairo cdda cdr cli consolekit cracklib crypt cups cxx dbus dri dts dvd dvdr emacs emboss encode exif fam ffmpeg firefox flac fortran gdbm gif git glamor gpm gtk iconv icu ipv6 jpeg jpg kdepim lame lcms ldap libnotify mad mjpeg mmx mng modules mp3 mp4 mpeg multilib ncurses networkmanager nls nptl nvidia ogg opengl openmp pam pango pcre pdf png policykit ppds profile qt3support qt5 quicktime readline savedconfig schroedinger sdl seccomp session spell sse sse2 sse3 sse4_1 sse4_2 ssl ssse3 startup-notification svg tcpd template_haskell tga theora tiff truetype udev udisks unicode upower usb uvm vdpau vorbis win32codecs wxwidgets x264 xattr xcb xml xv xvid zlib ~amd64" ABI_X86="64 32" ALSA_CARDS="ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="kexi words flow plan sheets stage tables krita karbon braindump author" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="aes avx mmx mmxext popcnt sse sse2 sse3 sse4_1 sse4_2 ssse3" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="evdev keyboard mouse synaptics wacom joystick" KERNEL="linux" L10N="en-GB pl ru" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LINGUAS="en" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php5-6 php7-0" POSTGRES_TARGETS="postgres9_5" PYTHON_SINGLE_TARGET="python2_7" PYTHON_TARGETS="python2_7 python3_4" RUBY_TARGETS="ruby22" USERLAND="GNU" VIDEO_CARDS="nvidia intel" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account"
Unset:  CC, CPPFLAGS, CTARGET, CXX, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS

@Vezzra
Copy link
Member

Vezzra commented Dec 8, 2017

@madjestic, can you open a new issue for that? This issue is too old to be reopened, and although your problem seems to be similiar, it's not really the same AFAICT (the missing symbols are different ones).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
category:bug The Issue/PR describes or solves a perceived malfunction within the game.
Projects
None yet
Development

No branches or pull requests

5 participants