LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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-20-2015, 04:45 AM   #271
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106

Debian are using this patch for mumble to overcome the compilation issue with gcc 4.9:

http://bazaar.launchpad.net/~ubuntu-...h-gcc-4.9.diff
 
1 members found this post helpful.
Old 05-20-2015, 06:12 AM   #272
ppr:kut
Slackware Contributor
 
Registered: Aug 2006
Location: Netherlands
Distribution: Slackware
Posts: 631

Rep: Reputation: 463Reputation: 463Reputation: 463Reputation: 463Reputation: 463
You don't need to modify anything. All you need to do is specify another environment variable like you already do with CFLAGS. For example like this

Code:
CC=clang \
CFLAGS="$SLKCFLAGS" \
./configure \
cmake knows the CMAKE_C_COMPILER and CMAKE_CXX_COMPILER flags to achieve the same.
 
1 members found this post helpful.
Old 05-22-2015, 10:53 AM   #273
kingbeowulf
Senior Member
 
Registered: Oct 2003
Location: WA
Distribution: Slackware
Posts: 1,267
Blog Entries: 11

Rep: Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744
Quote:
Originally Posted by ppr:kut View Post
You don't need to modify anything. All you need to do is specify another environment variable like you already do with CFLAGS. For example like this

cmake knows the CMAKE_C_COMPILER and CMAKE_CXX_COMPILER flags to achieve the same.
Now THAT'S a consise answer I can use to get me looking in the right direction. I'll ty it and see if it introduces any unintended weirdness.
 
Old 05-22-2015, 10:58 AM   #274
kingbeowulf
Senior Member
 
Registered: Oct 2003
Location: WA
Distribution: Slackware
Posts: 1,267
Blog Entries: 11

Rep: Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744
Quote:
Originally Posted by Alien Bob View Post
Debian are using this patch for mumble to overcome the compilation issue with gcc 4.9:

http://bazaar.launchpad.net/~ubuntu-...h-gcc-4.9.diff
This is a fairly old patch. My Launchpad search-fu is poor (or else I avoid Debian and Ubuntu like a plague!). I'm curious why there is no mention upstream, that I found so far, in the mumble forums. Surely, they would have bumped into this by now?

Edit: Found unanswered post on Mumble forum with the same error: http://forums.mumble.info/viewtopic....=compile#p5821

Last edited by kingbeowulf; 05-22-2015 at 12:31 PM. Reason: additional information
 
Old 05-22-2015, 01:04 PM   #275
kingbeowulf
Senior Member
 
Registered: Oct 2003
Location: WA
Distribution: Slackware
Posts: 1,267
Blog Entries: 11

Rep: Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744Reputation: 744
To compile mumble-1.2.8 on Slackware-current both clang and the fix-compile-with-gcc-4.9 patch Alien Bob pointed me to were required. From what I have observed:
  • the patch fixes a bug in Mumble in src/OSS.cpp that earlier gcc versions, and this one, ignores. Clang appears more strict.
  • clang exits with error without the patch at "short buffer[iMicLength];" in src/OSS.cpp
  • gcc-4.9.2 (g++) still fails with "internal compiler error" at src/ACL.cpp with the path.

So we still have and issue with either mumble, gcc-4.9.2 or both. Debian must have patched something else for gcc or don't know how to properly annotate their patches...

(BTW, ppr:kut, for mumble it is: QMAKE_CC=clang QMAKE_CXX=clang)

Last edited by kingbeowulf; 05-22-2015 at 01:06 PM. Reason: correct paths
 
Old 05-24-2015, 12:54 AM   #276
ppencho
Member
 
Registered: Jan 2004
Location: Bulgaria
Distribution: Slackware64-current
Posts: 94

Rep: Reputation: Disabled
Quote:
Originally Posted by ppencho View Post
Someone else with immediate X/KDE crash when steam-client is being launched?
On clean current32 install (AlienBob slackware-current-install-dvd.iso 17-05-2015 with only additional package installed steamclient-1.0.0.50) I had the same X crash. Installing the latest proprietary AMD driver (Catalyst 14.12 / 14.501.1003) fixed the issue and now steam starts fine.
 
Old 05-24-2015, 03:55 AM   #277
414N
Member
 
Registered: Sep 2011
Location: Italy
Distribution: Slackware
Posts: 647

Rep: Reputation: 189Reputation: 189
mysql-workbench empty result grid

I just stumbled upon this issue, where the panels for "Result grid" and "Action output" show nothing upon running a query.
This issue is related to a glib update (>=2.42) that got fixed some time ago and is indeed fixed in the 6.2.5 source, but it resurfaces if you don't upgrade also the glib C++ bindings used by the program, namely glibmm (and cairomm too, as it depends on it). I just upgraded them to version 2.42.0 (glibmm) and 1.11.2 (cairomm) and mysql-workbench is finally working fine again.

Last edited by 414N; 05-24-2015 at 04:04 AM.
 
Old 05-24-2015, 04:09 AM   #278
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,124

Rep: Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198
Quote:
Originally Posted by 414N View Post
I just upgraded them to version 2.42.0 (glibmm) and 1.11.2 (cairomm) and mysql-workbench is finally working fine again.
I updated them one month ago in my personal repository for current

http://cgit.ponce.cc/slackbuilds/commit/?h=cairomm
http://cgit.ponce.cc/slackbuilds/commit/?h=glibmm
 
Old 05-24-2015, 04:24 AM   #279
alejandro.mc
LQ Newbie
 
Registered: May 2007
Posts: 5

Rep: Reputation: 0
so.

I'm no expert, but shouldn't things like Seamonkey, Skype, etc. that I had working perfectly under Debian 7, work out of the box in Debian 8?
 
Old 05-24-2015, 04:40 AM   #280
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,066

Rep: Reputation: Disabled
Quote:
Originally Posted by alejandro.mc View Post
I'm no expert, but shouldn't things like Seamonkey, Skype, etc. that I had working perfectly under Debian 7, work out of the box in Debian 8?
Thi is not a Debian forum but f I extrapolate most of the time the answer could be no, because for instance the needed shared objects shipped in the distribution have changed, unless all dependencies be bundled. Furthermore why upgrade your distribution if you don't want upgraded applications?

Last edited by Didier Spaier; 05-24-2015 at 06:49 AM.
 
Old 05-24-2015, 09:53 AM   #281
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,680

Rep: Reputation: 1797Reputation: 1797Reputation: 1797Reputation: 1797Reputation: 1797Reputation: 1797Reputation: 1797Reputation: 1797Reputation: 1797Reputation: 1797Reputation: 1797
Quote:
Originally Posted by ponce View Post
I updated them one month ago in my personal repository for current

http://cgit.ponce.cc/slackbuilds/commit/?h=cairomm
http://cgit.ponce.cc/slackbuilds/commit/?h=glibmm
Ponce, you might want to upgrade pangomm to 2.36.0
 
Old 05-24-2015, 10:56 AM   #282
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,124

Rep: Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198Reputation: 4198
thanks willy, I'll do.
now I don't remember why I haven't do it already, I seem to recall to have tested it with the other *mm stuff and to have left it out intetionally...
well, maybe it will come to mind.
 
Old 05-28-2015, 02:12 PM   #283
staus
Member
 
Registered: Apr 2004
Posts: 155

Rep: Reputation: 10
I'm mot sure if anyone posted a complaint about Imagemagick. I did a search on the forum, but couldn't find anything.
I had to recompile the 14.1 source code (32 bit) while actually using the current 32 bit Slackware.

I no longer get "Illegal command" failures when running import.
 
Old 05-30-2015, 01:38 PM   #284
Paulo2
Member
 
Registered: Aug 2012
Distribution: Slackware64 15.0 (started with 13.37). Testing -current in a spare partition.
Posts: 935

Rep: Reputation: 526Reputation: 526Reputation: 526Reputation: 526Reputation: 526Reputation: 526
Quote:
Originally Posted by staus View Post
I'm mot sure if anyone posted a complaint about Imagemagick. I did a search on the forum, but couldn't find anything.
I had to recompile the 14.1 source code (32 bit) while actually using the current 32 bit Slackware.

I no longer get "Illegal command" failures when running import.
Thanks for pointing this out, I didn't note.
Recompiling imagemagick 6.9.0-10 (-current version) fixed the problem.

I have the same problem with Cups -current version (illegal instruction)
but recompiling doesn't work.
 
Old 05-30-2015, 07:37 PM   #285
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,154

Original Poster
Rep: Reputation: 7323Reputation: 7323Reputation: 7323Reputation: 7323Reputation: 7323Reputation: 7323Reputation: 7323Reputation: 7323Reputation: 7323Reputation: 7323Reputation: 7323
As previously mentioned,

Quote:
....finally took the same CD/DVDs that can be read and cannot be read in any of the 3 CD/DVD drives in this box and booted to winXp and then to PC-BSD 10.1. Both operating systems can read all the disks, without a problem in all 3 drives.
So... it has to be something to do with the mass upgrades of 21 April. What, I don't know.
Nothing has changed, in this regard, since 21 April. The problem remains.
 
  


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
Three Things That Won't Get You An IT Job – And Two Things That Will sundialsvcs General 20 08-13-2014 02:55 PM
Recent Changes in Current (or things that go bump in the night). cwizardone Slackware 13 03-02-2013 08:30 AM
VirtualBox won't run after upgrade to slackware64 current Ook Slackware 9 06-18-2011 07:13 AM
[SOLVED] kernel upgrade -current messed up things portia Slackware 28 01-26-2010 05:48 PM
Things that run in framebuffer!!! Optyx Linux - General 1 08-01-2007 08:26 PM

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

All times are GMT -5. The time now is 07:53 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