Rudi Heitbaum
Rudi Heitbaum
I have tried using /S (which does not display the dialogs) but does not install. Do we have a guide on installing silently?
../mtpfs.c: In function 'lookup_folder_id': ../mtpfs.c:477:27: warning: unused variable 'storage' [-Wunused-variable] 477 | LIBMTP_devicestorage_t *storage; | ^~~~~~~ ../mtpfs.c: In function 'mtpfs_readdir': ../mtpfs.c:860:18: warning: unused variable 'name' [-Wunused-variable] 860 | gchar *name;...
../mtpfs.c: In function 'mtpfs_blank': ../mtpfs.c:1628:1: warning: no return statement in function returning non-void [-Wreturn-type] 1628 | } | ^
Update kodi-platform to require the same CMake as https://github.com/xbmc/xbmc/blob/master/CMakeLists.txt thus addressing the following build failure when compiling with cmake-4.0.0 ``` CMake Error at CMakeLists.txt:3 (cmake_minimum_required): Compatibility with CMake < 3.5...
_PLEASE NOTE the following text from the iperf3 license. Submitting a pull request to the iperf3 repository constitutes "[making] Enhancements available...publicly":_ ``` You are under no obligation whatsoever to provide...
Ref: https://en.cppreference.com/w/cpp/header/ciso646 Log: ``` $ g++ -v gcc version 15.0.0 20250105 (experimental) (GCC) … [5/8] Building CXX object cube/CMakeFiles/vkcubepp.dir/cube.cpp.o In file included from /var/media/DATA/home-rudi/LibreELEC.tv/build.LibreELEC-Generic.x86_64-13.0-devel/toolchain/x86_64-libreelec-linux-gnu/sysroot/usr/include/vulkan/vulkan_hpp_macros.hpp:35, from /var/media/DATA/home-rudi/LibreELEC.tv/build.LibreELEC-Generic.x86_64-13.0-devel/toolchain/x86_64-libreelec-linux-gnu/sysroot/usr/include/vulkan/vulkan.hpp:11, from ../cube/cube.cpp:51: /var/media/DATA/home-rudi/LibreELEC.tv/build.LibreELEC-Generic.x86_64-13.0-devel/toolchain/x86_64-libreelec-linux-gnu/include/c++/15.0.0/ciso646:46:4: warning:...
- Fixes #134 When compiling with -std=c23 the following errors are observed. common/qtypes.h:37:15: error: cannot use keyword 'false' as enumeration constant 37 | typedef enum{ false, true, ENSURE_INT_QBOOL = 0x70000000...
gcc-15 switched to -std=c23 by default: https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=55e3bd376b2214e200fa76d12b67ff259b06c212 ``` In file included from common/shell.h:24, from common/cvar.h:26, from common/quakedef.h:33, from common/common.c:34: common/qtypes.h:37:15: error: expected identifier before 'false' 37 | typedef enum{ false,...
Fixes the build when using gcc 15 - fixes #750
### Describe the bug gcc-15 switched to -std=c23 by default: https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=55e3bd376b2214e200fa76d12b67ff259b06c212 This causes the compile error ### Reproduction steps 1. Compile with gcc 15-20241117 ### Expected behavior Successful compile ###...