LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Slackware from Scratch and X11 (https://www.linuxquestions.org/questions/slackware-14/slackware-from-scratch-and-x11-4175560702/)

marav 05-02-2023 06:25 AM

Quote:

Originally Posted by nobodino (Post 6428130)
Regression test up to "Fri Apr 28 18:25:13 UTC 2023" (x86_64 version) with gcc-13.1.

Not so bad but, here are some non building packgages:
- nodejs: problem solved by marav
- ncftp: problem solved by marav
- mariadb: problem solved by marav
- vulkan-sdk: no complete solution
- qt5webkit: problem solved
- qt-5.19.6: problem solved by marav
- mozilla-thunderbird: problem solved by marav
- python2-module-scollection: need to upgrade M2crypto package to 0.38.0

Specific to SFS:
- llvm: doesn't build on SFS with gcc-13.1 for the 1st pass

We still have vulkan-sdk
Honestly, I don't know. Mostly others don't seem to compile DirectXShaderCompiler or Vulkan-Profiles
and gcc 13 has only just arrived in the testing/ branch of Arch
So, wait and see

lucabon 05-22-2023 04:55 AM

fcitx5 does not more compile with fmt 10.0.0 (the latter upgraded on May 10th).

Already fixed in git (but not yet released):
https://github.com/fcitx/fcitx5/comm...a17b9b8f6a506b

Code:

--- fcitx5-5.0.23/src/modules/dbus/dbusmodule.cpp.orig        2022-11-16 08:56:34.000000000 +0100
+++ fcitx5-5.0.23/src/modules/dbus/dbusmodule.cpp    2023-05-22 11:43:13.224258951 +0200
@@ -571,7 +571,7 @@ public:
                }
                ss << "] program:" << ic->program()
                    << " frontend:" << ic->frontend()
-                  << " cap:" << fmt::format("{:x}", ic->capabilityFlags())
+                  << " cap:" << fmt::format("{:x}", static_cast<uint64_t>(ic->capabilityFlags()))
                    << " focus:" << ic->hasFocus() << std::endl;
                return true;
            });


nobodino 08-28-2023 06:17 AM

Regression test up to "Sat Aug 26 21:01:45 UTC 2023" (x86_64 version).

Not tested for a long time.
Some problems already solved:
- openssh: solved
- fcitx5-m17n: solved
- MPlayer: a solution by marav, but doesn't solve the root cause which is gettext. Buildable
- vulkan: no solution even with newer solution up to 1.3.260.0

Code:

/tmp/VulkanTools-sdk-1.3.204/vkconfig_core/../vkconfig_core/version.h:61:5: note: ‘uint32_t’ is defined in header ‘<cstdint>’; did you forget to ‘#include <cstdint>’?
/tmp/VulkanTools-sdk-1.3.204/vkconfig_core/../vkconfig_core/version.h: In constructor ‘Version::Version()’:
/tmp/VulkanTools-sdk-1.3.204/vkconfig_core/../vkconfig_core/version.h:39:26: error: class ‘Version’ does not have any field named ‘_major’
  39 |    explicit Version() : _major(0), _minor(0), _patch(0) {}
      |                          ^~~~~~
/tmp/VulkanTools-sdk-1.3.204/vkconfig_core/../vkconfig_core/version.h:39:37: error: class ‘Version’ does not have any field named ‘_minor’
  39 |    explicit Version() : _major(0), _minor(0), _patch(0) {}
      |                                    ^~~~~~
/tmp/VulkanTools-sdk-1.3.204/vkconfig_core/../vkconfig_core/version.h:39:48: error: class ‘Version’ does not have any field named ‘_patch’
  39 |    explicit Version() : _major(0), _minor(0), _patch(0) {}
      |                                                ^~~~~~
make[2]: *** [vkconfig_core/CMakeFiles/vkconfig_core.dir/build.make:76: vkconfig_core/CMakeFiles/vkconfig_core.dir/alert.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:1195: vkconfig_core/CMakeFiles/vkconfig_core.dir/all] Error 2


lucabon 08-29-2023 03:24 AM

Quote:

Originally Posted by nobodino (Post 6450636)
Regression test up to "Sat Aug 26 21:01:45 UTC 2023" (x86_64 version).

- vulkan: no solution even with newer solution up to 1.3.260.0

Version 1.3.250 solves the issue (missing <cstdint> include):
Code:

--- a/vkconfig_core/version.h
+++ b/vkconfig_core/version.h
@@ -22,6 +22,7 @@
 #pragma once
 
 #include <cstddef>
+#include <cstdint>
 #include <string>
 
 #define SUPPORT_LAYER_CONFIG_2_2_0 1


marav 08-29-2023 03:42 AM

For me, both mplayer et vulkan FTBFS have been solved now

nobodino 09-03-2023 12:44 PM

Regression test up to "Fri Sep 1 20:16:14 UTC 2023" (x86_64 version).

Nearly perfect, always the python2-module-collection package but I can trick it.


All times are GMT -5. The time now is 11:07 PM.