Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Unsupported Software
  • Search

[SOLVED] cmake find_package(wxWidgets) libraries not found

This forum covers all Gentoo-related software not officially supported by Gentoo. Ebuilds/software posted here might harm the health and stability of your system(s), and are not supported by Gentoo developers. Bugs/errors caused by ebuilds from overlays.gentoo.org are covered by this forum, too.
Post Reply
Advanced search
8 posts • Page 1 of 1
Author
Message
pgu
l33t
l33t
Posts: 722
Joined: Thu Jul 30, 2009 3:41 pm
Location: Oslo, Norway

[SOLVED] cmake find_package(wxWidgets) libraries not found

  • Quote

Post by pgu » Wed Feb 15, 2023 7:01 am

cmake find_package(wxWidgets) libraries not found

I'm trying to build https://github.com/myriadrf/LimeSuite.git:

Code: Select all

$ git describe --tags
v22.09.1
$ git rev-parse --short HEAD
b18db192
$ mkdir pgu-build
$ cd pgu-build/
$ cmake ..
-- 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
CMake Deprecation Warning at CMakeLists.txt:19 (cmake_policy):
  The OLD behavior for policy CMP0077 will be removed from a future version
  of CMake.

  The cmake-policies(7) manual explains that the OLD behaviors of all
  policies are deprecated and that a policy should be set to OLD only under
  specific short-term circumstances.  Projects should be ported to the NEW
  behavior and not rely on setting a policy to OLD.


-- Enabling native optimizations
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE  
-- Performing Test HAVE_CXX_ATOMICS_WITHOUT_LIB
-- Performing Test HAVE_CXX_ATOMICS_WITHOUT_LIB - Success
-- Performing Test HAVE_CXX_ATOMICS64_WITHOUT_LIB
-- Performing Test HAVE_CXX_ATOMICS64_WITHOUT_LIB - Success
-- Found libusb-1.0:
--  - Includes: /usr/include/libusb-1.0
--  - Libraries: /usr/lib64/libusb-1.0.so
-- USB_INCLUDE_DIRS: /usr/include/libusb-1.0
-- USB_LIBRARIES: /usr/lib64/libusb-1.0.so
-- USB_INCLUDE_DIRS: /usr/include/libusb-1.0
-- USB_LIBRARIES: /usr/lib64/libusb-1.0.so
-- Looking for wiringPi.h
-- Looking for wiringPi.h - not found
-- Could NOT find wxWidgets (missing: wxWidgets_LIBRARIES) 
-- wxWidgets_DEFINITIONS: _FILE_OFFSET_BITS=64;WXUSINGDLL;__WXGTK__
-- wxWidgets_INCLUDE_DIRS: /usr/lib64/wx/include/gtk3-unicode-3.0-gtk3;/usr/include/wx-3.0-gtk3
-- wxWidgets_LIBRARIES: 
-- Found Gnuplot: /usr/bin/gnuplot (found version "5.4.4.4 (Gentoo revision r0)") 
-- GNUPlot Found
-- Found OpenGL: /usr/lib64/libOpenGL.so   
-- Found X11: /usr/include   
-- Looking for XOpenDisplay in /usr/lib64/libX11.so;/usr/lib64/libXext.so
-- Looking for XOpenDisplay in /usr/lib64/libX11.so;/usr/lib64/libXext.so - found
-- Looking for gethostbyname
-- Looking for gethostbyname - found
-- Looking for connect
-- Looking for connect - found
-- Looking for remove
-- Looking for remove - found
-- Looking for shmat
-- Looking for shmat - found
-- Looking for IceConnectionNumber in ICE
-- Looking for IceConnectionNumber in ICE - found
-- Found FLTK: /usr/lib64/fltk/libfltk_images.so;/usr/lib64/fltk/libfltk_forms.so;/usr/lib64/fltk/libfltk_gl.so;/usr/lib64/fltk/libfltk.so  
-- Found Git: /usr/bin/git (found version "2.39.1") 
-- Module LMS7Support configured with version: 22.09.1-b18db192
-- 
-- ######################################################
-- ## LimeSuite enabled features
-- ######################################################
-- 
 * LimeSuiteHeaders, The lime suite headers
 * LimeSuiteLibrary, The lime suite library
 * ConnectionFX3, FX3 Connection support
 * ConnectionFTDI, FTDI Connection support
 * ConnectionXillybus, PCIE Xillybus Connection support
 * LimeSuiteExamples, LimeSuite library API examples
 * LimeRFE, LimeRFE support
 * LimeUtilCommand, Command line device discovery utility
 * LimeQuickTest, LimeSDR-QuickTest Utility
 * SoapySDRLMS7, SoapySDR bindings for LMS7
 * LimeSuiteOctave, LimeSuite Octave integration

-- ######################################################
-- ## LimeSuite disabled features
-- ######################################################
-- 
 * ConnectionEVB7COM, EVB+COM Connection support
 * ConnectionSTREAM_UNITE, STREAM+UNITE Connection support
 * ConnectionSPI, Rasp Pi 3 SPI Connection support
 * LimeSuiteGUI, GUI Application for LimeSuite
 * LimeSuiteDocAPI, LMS API Doxygen documentation
 * LimeSuiteDesktop, LimeSuite freedesktop integration

-- Install prefix: /usr/local
-- Build timestamp: 2023-02-15
-- Lime Suite version: 22.09.1-gb18db192
-- ABI/so version: 22.09-1
-- Configuring done
-- Generating done
It appears that the message

Code: Select all

Could NOT find wxWidgets (missing: wxWidgets_LIBRARIES) 
is a result of the CMakeLists.txt entry:

Code: Select all

########################################################################
## wx widgets dependency
########################################################################
set(wxWidgets_USE_DEBUG OFF)
set(wxWidgets_USE_UNICODE ON)
set(wxWidgets_USE_UNIVERSAL OFF)
set(wxWidgets_USE_STATIC ON)
find_package(wxWidgets COMPONENTS richtext xml html xrc adv aui core base gl)
Which packages have to be emerged and possibly which use flags has to be set to satisfy the above wxWidget find_package?
It seem to find the include files, but not the libraries.
Last edited by pgu on Wed Feb 15, 2023 7:46 am, edited 1 time in total.
Top
fedeliallalinea
Administrator
Administrator
User avatar
Posts: 31985
Joined: Sat Mar 08, 2003 11:15 pm
Location: here
Contact:
Contact fedeliallalinea
Website

  • Quote

Post by fedeliallalinea » Wed Feb 15, 2023 7:12 am

I think you should merge x11-libs/wxGTK:3.0-gtk3.
Questions are guaranteed in life; Answers aren't.

"Those who would give up essential liberty to purchase a little temporary safety,
deserve neither liberty nor safety."
- Ben Franklin
https://www.news.admin.ch/it/nsb?id=103968
Top
fedeliallalinea
Administrator
Administrator
User avatar
Posts: 31985
Joined: Sat Mar 08, 2003 11:15 pm
Location: here
Contact:
Contact fedeliallalinea
Website

  • Quote

Post by fedeliallalinea » Wed Feb 15, 2023 7:12 am

Moved from Portage & Programming to Unsupported Software.
Questions are guaranteed in life; Answers aren't.

"Those who would give up essential liberty to purchase a little temporary safety,
deserve neither liberty nor safety."
- Ben Franklin
https://www.news.admin.ch/it/nsb?id=103968
Top
pgu
l33t
l33t
Posts: 722
Joined: Thu Jul 30, 2009 3:41 pm
Location: Oslo, Norway

  • Quote

Post by pgu » Wed Feb 15, 2023 7:32 am

fedeliallalinea wrote:I think you should merge x11-libs/wxGTK:3.0-gtk3.
Thank you, but I already have it emerged, which is probably why it was able to find the include files. I might need some other USE flags though:

Code: Select all

 # emerge -pv x11-libs/wxGTK:3.0-gtk3

These are the packages that would be merged, in order:

Calculating dependencies... done!
[ebuild   R    ] x11-libs/wxGTK-3.0.5.1-r1:3.0-gtk3::gentoo  USE="X gstreamer -debug -doc -libnotify -opengl (-pch) -sdl -test -tiff -webkit" ABI_X86="(64) -32 (-x32)" 0 KiB

Total: 1 package (1 reinstall), Size of downloads: 0 KiB

 * IMPORTANT: 13 news items need reading for repository 'gentoo'.
 * Use eselect news read to view new items.
Top
pgu
l33t
l33t
Posts: 722
Joined: Thu Jul 30, 2009 3:41 pm
Location: Oslo, Norway

  • Quote

Post by pgu » Wed Feb 15, 2023 7:46 am

The opengl USE flag seem to resolve the issue.

Code: Select all

-- Found wxWidgets: -L/usr/lib64;-pthread;;;-lwx_gtk3u_richtext-3.0-gtk3;-lwx_baseu_xml-3.0-gtk3;-lwx_gtk3u_html-3.0-gtk3;-lwx_gtk3u_xrc-3.0-gtk3;-lwx_gtk3u_adv-3.0-gtk3;-lwx_gtk3u_aui-3.0-gtk3;-lwx_gtk3u_core-3.0-gtk3;-lwx_baseu-3.0-gtk3;-lwx_gtk3u_gl-3.0-gtk3 (found version "3.0.5") 
-- wxWidgets_DEFINITIONS: _FILE_OFFSET_BITS=64;WXUSINGDLL;__WXGTK__
-- wxWidgets_INCLUDE_DIRS: /usr/lib64/wx/include/gtk3-unicode-3.0-gtk3;/usr/include/wx-3.0-gtk3
-- wxWidgets_LIBRARIES: -L/usr/lib64;-pthread;;;-lwx_gtk3u_richtext-3.0-gtk3;-lwx_baseu_xml-3.0-gtk3;-lwx_gtk3u_html-3.0-gtk3;-lwx_gtk3u_xrc-3.0-gtk3;-lwx_gtk3u_adv-3.0-gtk3;-lwx_gtk3u_aui-3.0-gtk3;-lwx_gtk3u_core-3.0-gtk3;-lwx_baseu-3.0-gtk3;-lwx_gtk3u_gl-3.0-gtk3
Top
salfter
Tux's lil' helper
Tux's lil' helper
Posts: 89
Joined: Thu Jan 02, 2003 6:20 am
Contact:
Contact salfter
Website

  • Quote

Post by salfter » Fri Feb 02, 2024 2:15 am

pgu wrote:The opengl USE flag seem to resolve the issue.

Code: Select all

-- Found wxWidgets: -L/usr/lib64;-pthread;;;-lwx_gtk3u_richtext-3.0-gtk3;-lwx_baseu_xml-3.0-gtk3;-lwx_gtk3u_html-3.0-gtk3;-lwx_gtk3u_xrc-3.0-gtk3;-lwx_gtk3u_adv-3.0-gtk3;-lwx_gtk3u_aui-3.0-gtk3;-lwx_gtk3u_core-3.0-gtk3;-lwx_baseu-3.0-gtk3;-lwx_gtk3u_gl-3.0-gtk3 (found version "3.0.5") 
-- wxWidgets_DEFINITIONS: _FILE_OFFSET_BITS=64;WXUSINGDLL;__WXGTK__
-- wxWidgets_INCLUDE_DIRS: /usr/lib64/wx/include/gtk3-unicode-3.0-gtk3;/usr/include/wx-3.0-gtk3
-- wxWidgets_LIBRARIES: -L/usr/lib64;-pthread;;;-lwx_gtk3u_richtext-3.0-gtk3;-lwx_baseu_xml-3.0-gtk3;-lwx_gtk3u_html-3.0-gtk3;-lwx_gtk3u_xrc-3.0-gtk3;-lwx_gtk3u_adv-3.0-gtk3;-lwx_gtk3u_aui-3.0-gtk3;-lwx_gtk3u_core-3.0-gtk3;-lwx_baseu-3.0-gtk3;-lwx_gtk3u_gl-3.0-gtk3
I'm trying to build OrcaSlicer, and running into the same problem. I already had that USE flag set, as well as some others: X gstreamer libnotify opengl sdl tiff webkit. Even with all of these set, cmake won't configure it. I'm trying to rebuild x11-libs/wxGTK:3.2-gtk3 next (with this set of USE flags: X gstreamer libnotify lzma opengl sdl spell tiff wayland webkit)...will see if it'll build with that.

Update: OrcaSlicer finally configured (against x11-libs/wxGTK:3.0-gtk3) with this command:

Code: Select all

cmake -DOPENVDB_FIND_MODULE_PATH=/usr/lib64/cmake/OpenVDB -DSLIC3R_PCH=0 -DSLIC3R_WX_STABLE=1 -DSLIC3R_GTK=3 ..
It's building now...crossing my fingers that it works, as the provided appimage doesn't work. If it does, the next step will be to try building it in a container against a bare stage3 image so I can suss out the full set of dependencies.

Update 2: Failed...figured out how to build against wxGTK:3.2-gtk3 by using eselect wxwidgets set. I don't know how that's going to translate into an ebuild, though. In addition, I need to verify that it'll build against it.
Top
c2
Tux's lil' helper
Tux's lil' helper
Posts: 81
Joined: Fri Mar 14, 2025 3:00 pm

  • Quote

Post by c2 » Mon Jun 02, 2025 2:48 am

hello was there any soultion to this thread as i am currently having the same issue with cemu

Code: Select all

>>> Failed to emerge games-emulation/cemu-2.7_p20250527, Log file:
>>>  '/run/media/ssds/logs/games-emulation:cemu-2.7_p20250527:20250602-024202.log'
>>> Jobs: 0 of 1 complete, 1 failed                                     Load avg: 0.97, 0.84, 1.29
 * Package:    games-emulation/cemu-2.7_p20250527:0
 * Repository: FireBurn
 * Maintainer: audvare@gmail.com
 * USE:        abi_x86_64 amd64 cubeb discord elibc_glibc kernel_linux sdl vulkan
 * FEATURES:   network-sandbox preserve-libs sandbox userpriv usersandbox
>>> Unpacking source...
>>> Unpacking cemu-2.7_p20250527.tar.gz to /run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work
>>> Unpacking cemu-imgui-1.89.9.tar.gz to /run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work
>>> Unpacking glslang-fc9889c.tar.gz to /run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work
>>> Source unpacked in /run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work
>>> Preparing source in /run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef ...
 * Source directory (CMAKE_USE_DIR): "/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef"
 * Build directory  (BUILD_DIR):     "/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef_build"
 * Applying cemu-0002-remove-default-from-system-g.patch ...                                                                                                                                                                                                                                                                                                               [ ok ]
 * Hardcoded definition(s) removed in glslang/CMakeLists.txt:
 *      set(CMAKE_BUILD_TYPE "Debug")
>>> Source prepared.
>>> Configuring source in /run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef ...
 * Source directory (CMAKE_USE_DIR): "/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef"
 * Build directory  (BUILD_DIR):     "/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef_build"
cmake -C /run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef_build/gentoo_common_config.cmake -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=OFF -DENABLE_CUBEB=yes -DENABLE_DISCORD_RPC=yes -DENABLE_OPENGL=ON -DENABLE_SDL=yes -DENABLE_VCPKG=OFF -DENABLE_VULKAN=yes -DENABLE_WXWIDGETS=ON -DwxWidgets_CONFIG_EXECUTABLE=/usr/lib64/wx/config/gtk3-unicode-3.2 -DCMAKE_DISABLE_PRECOMPILE_HEADERS=OFF -DALLOW_EXTERNAL_SPIRV_TOOLS=ON -Wno-dev -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_TOOLCHAIN_FILE=/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef_build/gentoo_toolchain.cmake /run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef
loading initial cache file /run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef_build/gentoo_common_config.cmake
fatal: not a git repository (or any parent up to mount point /run/media/ssds)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
-- The C compiler identification is GNU 15.1.0
-- The CXX compiler identification is GNU 15.1.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/x86_64-pc-linux-gnu-gcc - 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/x86_64-pc-linux-gnu-g++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- Found CURL: /usr/lib64/libcurl.so (found version "8.13.0")
-- RapidJSON found. Headers: /usr/include
-- Found Boost: /usr/lib64/cmake/Boost-1.85.0/BoostConfig.cmake (found version "1.85.0") found components: program_options filesystem nowide
-- Trying to find local SPIR-V tools
-- optimizer enabled
-- Found Python3: /usr/bin/python3 (found version "3.13.3") found components: Interpreter
-- Found ZLIB: /usr/lib64/libz.so (found version "1.3.1")
-- Could NOT find zstd (missing: zstd_DIR)
-- Found PkgConfig: /usr/bin/x86_64-pc-linux-gnu-pkg-config (found version "2.4.3")
-- Checking for one of the modules 'libzstd'
-- Found zstd: /usr/lib64/libzstd.so (found version "1.5.7")
-- Found OpenSSL: /usr/lib64/libcrypto.so (found version "3.3.3") found components: Crypto SSL
-- Found PNG: /usr/lib64/libpng.so (found version "1.6.47")
-- Found X11: /usr/include
-- Looking for XOpenDisplay in /usr/lib64/libX11.so;/usr/lib64/libXext.so
-- Looking for XOpenDisplay in /usr/lib64/libX11.so;/usr/lib64/libXext.so - found
-- Looking for gethostbyname
-- Looking for gethostbyname - found
-- Looking for connect
-- Looking for connect - found
-- Looking for remove
-- Looking for remove - found
-- Looking for shmat
-- Looking for shmat - found
-- Looking for IceConnectionNumber in ICE
-- Looking for IceConnectionNumber in ICE - found
-- Found Wayland_Client: /usr/lib64/libwayland-client.so (found version "1.23.1")
-- Found Wayland: /usr/lib64/libwayland-client.so (found version "1.23.1") found components: Client
-- Found WaylandScanner: /usr/bin/wayland-scanner
-- Found WaylandProtocols: //usr/share/wayland-protocols (found suitable version "1.44", minimum required is "1.15")
-- Checking for one of the modules 'gtk+-3.0'
-- Found GTK3: /usr/lib64/libgtk-3.so;/usr/lib64/libgdk-3.so;/usr/lib64/libpangocairo-1.0.so;/usr/lib64/libcairo-gobject.so;/usr/lib64/libgdk_pixbuf-2.0.so;/usr/lib64/libatk-1.0.so;/usr/lib64/libpango-1.0.so;/usr/lib64/libcairo.so;/usr/lib64/libharfbuzz.so;/usr/lib64/libgio-2.0.so;/usr/lib64/libgobject-2.0.so;/usr/lib64/libglib-2.0.so (found version "3.24.49")
-- Could NOT find bluez (missing: bluez_DIR)
-- Checking for one of the modules 'bluez-1.0;bluez'
-- Found bluez: /usr/lib64/libbluetooth.so (found version "5.82")
-- Found OpenGL: /usr/lib64/libOpenGL.so
-- Could NOT find wxWidgets (missing: wxWidgets_DIR)
CMake Error at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:233 (message):
  Could NOT find wxWidgets (missing: wxWidgets_LIBRARIES
  wxWidgets_INCLUDE_DIRS) (Required is at least version "3.2")
Call Stack (most recent call first):
  /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:603 (_FPHSA_FAILURE_MESSAGE)
  /usr/share/cmake/Modules/FindwxWidgets.cmake:1014 (find_package_handle_standard_args)
  cmake/FindwxWidgets.cmake:17 (find_package)
  CMakeLists.txt:204 (find_package)


-- Configuring incomplete, errors occurred!
 * ERROR: games-emulation/cemu-2.7_p20250527::FireBurn failed (configure phase):
 *   cmake failed
 * 
 * Call stack:
 *     ebuild.sh, line  136:  Called src_configure
 *   environment, line 1721:  Called cmake_src_configure
 *   environment, line  958:  Called die
 * The specific snippet of code:
 *       "${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed";
 * 
 * If you need support, post the output of `emerge --info '=games-emulation/cemu-2.7_p20250527::FireBurn'`,
 * the complete build log and the output of `emerge -pqv '=games-emulation/cemu-2.7_p20250527::FireBurn'`.
 * The complete build log is located at '/run/media/ssds/logs/games-emulation:cemu-2.7_p20250527:20250602-024202.log'.
 * For convenience, a symlink to the build log is located at '/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/temp/build.log'.
 * The ebuild environment file is located at '/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/temp/environment'.
 * Working directory: '/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef_build'
 * S: '/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef'

 * Messages for package games-emulation/cemu-2.7_p20250527:
 * Log file: /run/media/ssds/logs/games-emulation:cemu-2.7_p20250527:20250602-024202.log

 * ERROR: games-emulation/cemu-2.7_p20250527::FireBurn failed (configure phase):
 *   cmake failed
 * 
 * Call stack:
 *     ebuild.sh, line  136:  Called src_configure
 *   environment, line 1721:  Called cmake_src_configure
 *   environment, line  958:  Called die
 * The specific snippet of code:
 *       "${CMAKE_BINARY}" "${cmakeargs[@]}" "${CMAKE_USE_DIR}" || die "cmake failed";
 * 
 * If you need support, post the output of `emerge --info '=games-emulation/cemu-2.7_p20250527::FireBurn'`,
 * the complete build log and the output of `emerge -pqv '=games-emulation/cemu-2.7_p20250527::FireBurn'`.
 * The complete build log is located at '/run/media/ssds/logs/games-emulation:cemu-2.7_p20250527:20250602-024202.log'.
 * For convenience, a symlink to the build log is located at '/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/temp/build.log'.
 * The ebuild environment file is located at '/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/temp/environment'.
 * Working directory: '/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef_build'
 * S: '/run/media/ssds/tmp/portage/games-emulation/cemu-2.7_p20250527/work/Cemu-7168d20cdebdce08173cdd1568c605400d7967ef'
c2@gentoobtw ~ $
Top
jflatt
n00b
n00b
Posts: 17
Joined: Tue Mar 01, 2005 7:34 pm

  • Quote

Post by jflatt » Fri Jun 20, 2025 6:31 pm

Look in your /usr/lib64/wx/config directory. Seems there is some back-and-forth over what this utility should be named. It's either going to be "gtk3-unicode-3.2-gtk" or "gtk3-unicode-3.2". Of course this may change if version numbers change. The cemu ebuild is looking for it without the "-gtk3" suffix. For me, I had to symlink it:

Code: Select all

ln -s gtk3-unicode-3.2-gtk3 gtk3-unicode-3.2
Top
Post Reply

8 posts • Page 1 of 1

Return to “Unsupported Software”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy