LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 05-02-2023, 06:25 AM   #931
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,354

Rep: Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066

Quote:
Originally Posted by nobodino View Post
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
 
1 members found this post helpful.
Old 05-22-2023, 04:55 AM   #932
lucabon
Member
 
Registered: Oct 2021
Location: Italy
Distribution: Slackware
Posts: 104

Rep: Reputation: 74
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;
             });
 
1 members found this post helpful.
Old 08-28-2023, 06:17 AM   #933
nobodino
Senior Member
 
Registered: Jul 2010
Location: Near Bordeaux in France
Distribution: slackware, slackware from scratch, LFS, slackware [arm], linux Mint...
Posts: 1,564

Rep: Reputation: 892Reputation: 892Reputation: 892Reputation: 892Reputation: 892Reputation: 892Reputation: 892
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

Last edited by nobodino; 08-28-2023 at 07:52 AM.
 
2 members found this post helpful.
Old 08-29-2023, 03:24 AM   #934
lucabon
Member
 
Registered: Oct 2021
Location: Italy
Distribution: Slackware
Posts: 104

Rep: Reputation: 74
Quote:
Originally Posted by nobodino View Post
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
 
Old 08-29-2023, 03:42 AM   #935
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,354

Rep: Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066Reputation: 4066
For me, both mplayer et vulkan FTBFS have been solved now
 
Old 09-03-2023, 12:44 PM   #936
nobodino
Senior Member
 
Registered: Jul 2010
Location: Near Bordeaux in France
Distribution: slackware, slackware from scratch, LFS, slackware [arm], linux Mint...
Posts: 1,564

Rep: Reputation: 892Reputation: 892Reputation: 892Reputation: 892Reputation: 892Reputation: 892Reputation: 892
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.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] /usr/bin/X11/X11/....... 10 X11 subsets & counting walter74 Linux - General 2 06-07-2015 12:36 AM
How do I get the /etc/X11/X file rebuilt from scratch rickh Debian 4 05-07-2006 11:06 PM
ali aladdin v agp stinks :scratch: :scratch: :scratch: Mr Marmmalade Linux - Hardware 1 07-08-2003 05:11 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 10:23 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration