Kodi Community Forum

Full Version: Upgrade to Beta - Won't Start
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi. I want to update 19a2 to the latest version (according to this guide).
Configuration
Code:
cmake ../kodi-src -DCMAKE_INSTALL_PREFIX=/usr/local -DAPP_RENDER_SYSTEM=gl
and build
Code:
cmake --build . -- VERBOSE=1 -j4
were successful, but at the start of the program
Code:
./kodi.bin
- a segmentation fault.
In core file:
cpp:
(gdb) bt
#0  0x0000000001930df1 in KODI::WINDOWING::X11::CWinSystemX11::InitWindowSystem() ()
#1  0x0000000001399795 in CApplication::CreateGUI() ()
#2  0x00000000010f6c5b in XBMC_Run ()
#3  0x0000000000bd5be6 in main ()
This is the log file when starting Kodi - StartKodi
Previously, it was updated in the same way from alpha 1 to alpha 2 - there were no problems.
Can you please help me?
(2020-11-21, 20:04)vgmedia Wrote: [ -> ]Hi. I want to update 19a2 to the latest version (according to this guide).
Configuration
Code:
cmake ../kodi-src -DCMAKE_INSTALL_PREFIX=/usr/local -DAPP_RENDER_SYSTEM=gl
and build
Code:
cmake --build . -- VERBOSE=1 -j4
were successful, but at the start of the program
Code:
./kodi.bin
- a segmentation fault.
In core file:
cpp:
(gdb) bt
#0  0x0000000001930df1 in KODI::WINDOWING::X11::CWinSystemX11::InitWindowSystem() ()
#1  0x0000000001399795 in CApplication::CreateGUI() ()
#2  0x00000000010f6c5b in XBMC_Run ()
#3  0x0000000000bd5be6 in main ()
This is the log file when starting Kodi - StartKodi
Previously, it was updated in the same way from alpha 1 to alpha 2 - there were no problems.
Can you please help me?
Yea this looks like a bug. I never updated the freebsd.xml settings definitions when transitioning to multi-windowing. I'll PR a fix
Thanks.
I deleted file system/settings/freebsd.xml and changed file xbmc/settings/Settings.cpp
cpp:
- #elif defined(TARGET_FREEBSD)
- if (CFile::Exists(SETTINGS_XML_FOLDER "freebsd.xml") && !Initialize(SETTINGS_XML_FOLDER "freebsd.xml"))
- CLog::Log(LOGFATAL, "Unable to load freebsd-specific settings definitions");
- #elif defined(TARGET_LINUX)
+ #elif defined(TARGET_LINUX) || defined(TARGET_FREEBSD)
re-configure and re-build, but nothing has changed. NewStartLog
Am I missing something?