Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 892683 - =dev-libs/boost-1.81.0-r1 breaks on CMAKE_MAP_IMPORTED_CONFIG_RELWITHDEBINFO overrides
Summary: =dev-libs/boost-1.81.0-r1 breaks on CMAKE_MAP_IMPORTED_CONFIG_RELWITHDEBINFO ...
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: David Seifert
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-01-30 23:09 UTC by Sergei Trofimovich
Modified: 2023-08-07 20:53 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Sergei Trofimovich 2023-01-30 23:09:23 UTC
=dev-libs/boost-1.81.0-r1 package somehow indirectly encodes

    -DCMAKE_BUILD_TYPE=Gentoo

for boost cmake files. This causes cmake ebuilds that use EAPI=8
break on boost imports.

Setting

    CMAKE_BUILD_TYPE=Gentoo

as a workaround in the ebuild seems to work.

I would say the need for such a workaround is a bug.

Real world broken package is vcmi. Example workaround:

    https://github.com/trofi/slyfox-gentoo/commit/806a4a1d582348f7db23bf98a9cb12bbaabbb0aa

Small reproducer that fails only on Gentoo from what I could test:

  // # cat ../foo.cc
    int main(){}

  # cat ../CMakeLists.txt
    cmake_minimum_required(VERSION 3.10.0)

    project(VCMI)

    set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
        "Choose the type of build, options are: Debug Release RelWithDebInfo. Default is RelWithDebInfo."
    FORCE)

    set(CMAKE_MAP_IMPORTED_CONFIG_RELWITHDEBINFO RelWithDebInfo Release MinSizeRel None "")

    find_package(Boost 1.48.0 REQUIRED COMPONENTS thread)

    add_executable(foo foo.cc)
    target_link_libraries(foo Boost::thread)

On Gentoo it fails as:

    # cmake .. -G Ninja && ninja
    -- The C compiler identification is GNU 12.2.1
    -- The CXX compiler identification is GNU 12.2.1
    -- Detecting C compiler ABI info
    -- Detecting C compiler ABI info - done
    -- Check for working C compiler: /usr/bin/cc - skipped
    -- Detecting C compile features
    -- Detecting C compile features - done
    -- Detecting CXX compiler ABI info
    -- Detecting CXX compiler ABI info - done
    -- Check for working CXX compiler: /usr/bin/c++ - skipped
    -- Detecting CXX compile features
    -- Detecting CXX compile features - done
    -- Found Boost: /usr/lib64/cmake/Boost-1.81.0/BoostConfig.cmake (found suitable version "1.81.0", minimum required is "1.48.0") found components: thread
    -- Configuring done
    CMake Warning (dev) in CMakeLists.txt:
      Policy CMP0111 is not set: An imported target missing its location property
      fails during generation.  Run "cmake --help-policy CMP0111" for policy
      details.  Use the cmake_policy command to set the policy and suppress this
      warning.

      IMPORTED_LOCATION not set for imported target "Boost::thread" configuration
      "RelWithDebInfo".
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) in CMakeLists.txt:
      Policy CMP0111 is not set: An imported target missing its location property
      fails during generation.  Run "cmake --help-policy CMP0111" for policy
      details.  Use the cmake_policy command to set the policy and suppress this
      warning.

      IMPORTED_LOCATION not set for imported target "Boost::thread" configuration
      "RelWithDebInfo".
    This warning is for project developers.  Use -Wno-dev to suppress it.

    -- Generating done
    -- Build files have been written to: /root/vcmi/b
    ninja: error: 'Boost::thread-NOTFOUND', needed by 'foo', missing and no known rule to make it

Here the error is that `Boost::thread` could not be found. What is confising:
configuration did not fail, but ninja.build encoded something invalid.

The important bit here is invalid 'IMPORTED_LOCATION' setting for Boost components.
Looks like the only provided location is GENTOORELEASE:

    # fgrep -R IMPORTED_LOCATION /usr/lib64/cmake |& fgrep -i boost |& fgrep -v GENTOORELEASE | wc -l
    0
    # fgrep -R IMPORTED_LOCATION /usr/lib64/cmake |& fgrep -i boost |& fgrep GENTOORELEASE | wc -l
    72

Real world example  is vcmi package. It uses the following override:

    # from https://github.com/vcmi/vcmi/blob/develop/CMakeLists.txt#L170-L176

    if(NOT CMAKE_BUILD_TYPE)
	set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
		"Choose the type of build, options are: Debug Release RelWithDebInfo. Default is RelWithDebInfo."
		FORCE)
	set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS Debug Release RelWithDebInfo)
    endif()
    #
    # ...
    #
    #Global fallback mapping
    # RelWithDebInfo falls back to Release, then MinSizeRel, and then to None (tbb in 22.04 requires it)
    set(CMAKE_MAP_IMPORTED_CONFIG_RELWITHDEBINFO RelWithDebInfo Release MinSizeRel None "")
    # MinSizeRel falls back to Release, then RelWithDebInfo, and then to None (tbb in 22.04 requires it)
    set(CMAKE_MAP_IMPORTED_CONFIG_MINSIZEREL MinSizeRel Release RelWithDebInfo None "")
    # Release falls back to RelWithDebInfo, then MinSizeRel, and then to None (tbb in 22.04 requires it)
    set(CMAKE_MAP_IMPORTED_CONFIG_RELEASE Release RelWithDebInfo MinSizeRel None "")
Comment 1 Sergei Trofimovich 2023-01-30 23:11:17 UTC
# emerge --info
Portage 3.0.44 (python 3.10.9-final-0, default/linux/amd64/17.1, gcc-12, glibc-2.36-r7, 6.1.8 x86_64)
=================================================================
System uname: Linux-6.1.8-x86_64-AMD_Ryzen_9_5950X_16-Core_Processor-with-glibc2.36
KiB Mem:   131862460 total,  15862936 free
KiB Swap:  197793688 total, 197768600 free
Timestamp of repository gentoo: Sun, 29 Jan 2023 21:30:01 +0000
Head commit of repository gentoo: c8bdd9aa2e808211185025407c08335f523c9775
sh bash 5.2_p15-r1
ld GNU ld (Gentoo 2.40 p1) 2.40
ccache version 4.7.4 [disabled]
app-misc/pax-utils:        1.3.7::gentoo
app-shells/bash:           5.2_p15-r1::gentoo
dev-lang/perl:             5.36.0-r2::gentoo
dev-lang/python:           3.10.9-r1::gentoo, 3.11.1-r1::gentoo
dev-lang/rust:             1.67.0::gentoo
dev-util/ccache:           4.7.4::gentoo
dev-util/cmake:            3.25.2::gentoo
dev-util/meson:            1.0.0::gentoo
sys-apps/baselayout:       2.13-r1::gentoo
sys-apps/sandbox:          2.30-r1::gentoo
sys-apps/systemd:          252.4-r1::gentoo
sys-devel/autoconf:        2.71-r5::gentoo
sys-devel/automake:        1.16.5::gentoo
sys-devel/binutils:        2.39-r4::gentoo, 2.40::gentoo
sys-devel/binutils-config: 5.5::gentoo
sys-devel/clang:           15.0.6::gentoo
sys-devel/gcc:             12.2.1_p20230121-r1::gentoo
sys-devel/gcc-config:      2.10::gentoo
sys-devel/libtool:         2.4.7-r1::gentoo
sys-devel/llvm:            15.0.7::gentoo
sys-devel/make:            4.4::gentoo
sys-kernel/linux-headers:  6.1::gentoo (virtual/os-headers)
sys-libs/glibc:            2.36-r7::gentoo
Repositories:

gentoo
    location: /bound/portage
    sync-type: rsync
    sync-uri: rsync://rsync.gentoo.org/gentoo-portage
    priority: -1000
    volatile: True
    sync-rsync-verify-max-age: 24
    sync-rsync-verify-jobs: 1
    sync-rsync-extra-opts:
    sync-rsync-verify-metamanifest: yes

crossdev
    location: /co
    masters: gentoo
    volatile: True

slyfox
    location: /bound/slyfox-gentoo
    masters: gentoo
    priority: 0
    volatile: True

nix-guix
    location: /bound/nix-guix-gentoo
    masters: gentoo
    priority: 1
    volatile: True

ACCEPT_KEYWORDS="amd64 ~amd64"
ACCEPT_LICENSE="@FREE"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-O2 -pipe -fdiagnostics-show-option -frecord-gcc-switches"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/share/gnupg/qualified.txt"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/sandbox.d /etc/terminfo"
CXXFLAGS="-O2 -pipe"
DISTDIR="/bound/distfiles"
ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GDK_PIXBUF_MODULE_FILE GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR XDG_STATE_HOME"
FCFLAGS="-O2 -pipe"
FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs buildpkg-live config-protect-if-modified distlocks ebuild-locks fail-clean fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
FFLAGS="-O2 -pipe"
GENTOO_MIRRORS="http://distfiles.gentoo.org"
LANG="C.UTF8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,--hash-style=gnu"
LEX="flex"
MAKEOPTS="-j17 -l17"
PKGDIR="/var/cache/binpkgs"
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="/dev/shm"
SHELL="/bin/bash"
USE="X acl amd64 bzip2 cli crypt dri fortran gdbm harfbuzz iconv ipv6 libglvnd libtirpc minizip multilib ncurses nls nptl opengl openmp pam pcre readline seccomp split-usr ssl systemd test-rust unicode xattr zlib" ABI_X86="64" ADA_TARGET="gnat_2021" 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="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext sse sse2" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx" INPUT_DEVICES="libinput" KERNEL="linux" LCD_DEVICES="bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text" LIBREOFFICE_EXTENSIONS="presenter-console presenter-minimizer" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php7-4 php8-0" POSTGRES_TARGETS="postgres12 postgres13" PYTHON_SINGLE_TARGET="python3_10" PYTHON_TARGETS="python3_10" RUBY_TARGETS="ruby27 ruby30 ruby31" USERLAND="GNU" VIDEO_CARDS="amdgpu fbdev intel nouveau radeon radeonsi vesa dummy v4l" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq proto steal rawnat logmark ipmark dhcpmac delude chaos account"
Unset:  ADDR2LINE, AR, ARFLAGS, AS, ASFLAGS, CC, CCLD, CONFIG_SHELL, CPP, CPPFLAGS, CTARGET, CXX, CXXFILT, ELFEDIT, EMERGE_DEFAULT_OPTS, EXTRA_ECONF, F77FLAGS, FC, GCOV, GPROF, INSTALL_MASK, LC_ALL, LD, LFLAGS, LIBTOOL, LINGUAS, MAKE, MAKEFLAGS, NM, OBJCOPY, OBJDUMP, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, RANLIB, READELF, RUSTFLAGS, SIZE, STRINGS, STRIP, YACC, YFLAGS
Comment 2 David Seifert gentoo-dev 2023-06-02 14:00:13 UTC
can you give me an in-tree reproducer? I haven't seen any example of breakage like this.
Comment 3 Sergei Trofimovich 2023-06-02 14:43:14 UTC
I'm not aware of any in-tree examples.