LinuxQuestions.org
Review your favorite Linux distribution.
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 03-14-2022, 11:31 AM   #1
TheNutCase
Member
 
Registered: May 2016
Location: Columbia, South Carolina14
Distribution: Slackware 15.0
Posts: 700

Rep: Reputation: Disabled
MuseScore won't finish compiling in Slackware 15.0.


When I try to compile MuseScore in Slackware I get the following output:
Code:
MuseScore-3.6/vtest/voice-2.mscx
fatal: not a git repository (or any of the parent directories): .git
if test ! -d build.release; then mkdir build.release; fi; \
      cd build.release;                          \
      export PATH="/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib64/java/bin:/usr/lib64/java/jre/bin:/usr/lib64/libexec/kf5:/usr/lib64/qt5/bin";                    \
      cmake -DCMAKE_BUILD_TYPE=RELEASE	       \
  	  -DCMAKE_TOOLCHAIN_FILE=""       \
  	  -DCMAKE_INSTALL_PREFIX="/usr"       \
  	  -DMSCORE_INSTALL_SUFFIX=""""      \
  	  -DMUSESCORE_LABEL=""""             \
  -DMUSESCORE_BUILD_CONFIG="release" \
  -DMUSESCORE_REVISION="""" \
  	  -DCMAKE_BUILD_NUMBER=""""   \
  	  -DTELEMETRY_TRACK_ID="""" \
  	  -DBUILD_LAME=""ON" "             \
  	  -DBUILD_PULSEAUDIO=""ON" " \
  	  -DBUILD_PORTMIDI=""ON"   "  \
  	  -DBUILD_JACK=""ON"       "             \
  	  -DBUILD_ALSA=""ON"       "              \
   	  -DBUILD_PORTAUDIO=""ON"  "   \
   	  -DBUILD_WEBENGINE="ON"   \
   	  -DUSE_SYSTEM_FREETYPE="ON" \
   	  -DDOWNLOAD_SOUNDFONT="OFF"   \
  -DUSE_ZITA_REVERB=""ON""   \
  	  -DCMAKE_SKIP_RPATH=""FALSE""     ..; \
      make lrelease;                             \
      make -j 4;                           \

Re-run cmake no build system arguments
-- The C compiler identification is GNU 11.2.0
-- The CXX compiler identification is GNU 11.2.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
QMake version 3.1
Using Qt version 5.15.3 in /usr/lib64
CMake Deprecation Warning at CMakeLists.txt:54 (cmake_policy):
  The OLD behavior for policy CMP0071 will be removed from a future version
  of CMake.

  The cmake-policies(7) manual explains that the OLD behaviors of all
  policies are deprecated and that a policy should be set to OLD only under
  specific short-term circumstances.  Projects should be ported to the NEW
  behavior and not rely on setting a policy to OLD.


CMake Error at build/FindQt5.cmake:43 (message):
  MuseScore 3 does not support Qt 5.15: 5.15.0 shows empty palettes panel,
  5.15.1 and later crash when opening pre-3.6 scores due to QTBUG-77337
Call Stack (most recent call first):
  CMakeLists.txt:84 (include)


-- Configuring incomplete, errors occurred!
See also "/tmp/SBo/MuseScore-3.6/build.release/CMakeFiles/CMakeOutput.log".
make[1]: Entering directory '/tmp/SBo/MuseScore-3.6/build.release'
make[1]: *** No rule to make target 'lrelease'.  Stop.
make[1]: Leaving directory '/tmp/SBo/MuseScore-3.6/build.release'
make[1]: Entering directory '/tmp/SBo/MuseScore-3.6/build.release'
make[1]: *** No targets specified and no makefile found.  Stop.
make[1]: Leaving directory '/tmp/SBo/MuseScore-3.6/build.release'
make: *** [Makefile:55: release] Error 2
And yes - I have all of the required dependencies installed.
 
Old 03-14-2022, 11:46 AM   #2
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,699

Rep: Reputation: 1381Reputation: 1381Reputation: 1381Reputation: 1381Reputation: 1381Reputation: 1381Reputation: 1381Reputation: 1381Reputation: 1381Reputation: 1381
Just tested it using sbopkg. made a queue file for it with

Code:
sqg -p MuseScore
then loaded the queue and let sbopkg build all the dependencies and MuseScore and it finished fine. Are you using the 15.0 branch of www.slackbuilds.org?
 
Old 03-14-2022, 11:46 AM   #3
Windu
Member
 
Registered: Aug 2021
Distribution: Arch Linux, Debian, Slackware
Posts: 594

Rep: Reputation: Disabled
Apply this patch: https://github.com/musescore/MuseSco...5a6ccff7bf9fbb

Edit, ah yes, he is still using the Slackware 14.2 entry of SlackBuilds.org (MuseScore 3.6) instead of compiling 3.6.2.

Last edited by Windu; 03-14-2022 at 11:48 AM.
 
Old 03-14-2022, 11:53 AM   #4
montagdude
Senior Member
 
Registered: Apr 2016
Distribution: Slackware
Posts: 2,011

Rep: Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619
Are you running the SlackBuild from SBo? It doesn't look like it. The latest version of MuseScore on SBo is 3.6.2, and there should not be any git commands involved. It is building fine here.

Edit: looks like I'm beaten to the punch.
 
Old 03-14-2022, 02:47 PM   #5
TheNutCase
Member
 
Registered: May 2016
Location: Columbia, South Carolina14
Distribution: Slackware 15.0
Posts: 700

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Windu View Post
Apply this patch: https://github.com/musescore/MuseSco...5a6ccff7bf9fbb

Edit, ah yes, he is still using the Slackware 14.2 entry of SlackBuilds.org (MuseScore 3.6) instead of compiling 3.6.2.
For your information, I'm trying to build MuseScore 3.6.2 using Slackware 15.0 as my operating system.
 
Old 03-14-2022, 02:56 PM   #6
Windu
Member
 
Registered: Aug 2021
Distribution: Arch Linux, Debian, Slackware
Posts: 594

Rep: Reputation: Disabled
Quote:
Originally Posted by TheNutCase View Post
For your information, I'm trying to build MuseScore 3.6.2 using Slackware 15.0 as my operating system.
Tryin, maybe. Failing, definitely, The first line of the console text you posted, contains "MuseScore-3.6/vtest/voice-2.mscx".
The 3.6.2 tarball definitely has "MuseScore-3.6.2" as toplevel directory name. I downloaded and checked.
 
Old 03-14-2022, 03:30 PM   #7
TheNutCase
Member
 
Registered: May 2016
Location: Columbia, South Carolina14
Distribution: Slackware 15.0
Posts: 700

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Windu View Post
Tryin, maybe. Failing, definitely, The first line of the console text you posted, contains "MuseScore-3.6/vtest/voice-2.mscx".
The 3.6.2 tarball definitely has "MuseScore-3.6.2" as toplevel directory name. I downloaded and checked.
I downloadsd and used the tarball from Slackbuilds.org, and it also showed 3.6.2 as the top level directory (and I also checked).
 
Old 03-14-2022, 03:33 PM   #8
Windu
Member
 
Registered: Aug 2021
Distribution: Arch Linux, Debian, Slackware
Posts: 594

Rep: Reputation: Disabled
Quote:
Originally Posted by TheNutCase View Post
I downloadsd and used the tarball from Slackbuilds.org, and it also showed 3.6.2 as the top level directory (and I also checked).
I am sorry, but it is factually not true what you say there, look at your own first post. You made a mistake. Try to learn from it.
 
Old 03-14-2022, 03:55 PM   #9
TheNutCase
Member
 
Registered: May 2016
Location: Columbia, South Carolina14
Distribution: Slackware 15.0
Posts: 700

Original Poster
Rep: Reputation: Disabled
I owe everyone on this thread an apology, I discovered that I had, in fact, been using the wrong slackbuild (3.6 instead of 3.6.2) without realizing it. But thank you all for your help regardless.
 
Old 03-14-2022, 05:26 PM   #10
marav
LQ Sage
 
Registered: Sep 2018
Location: Gironde
Distribution: Slackware
Posts: 5,409

Rep: Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144
Quote:
Originally Posted by TheNutCase View Post
I owe everyone on this thread an apology, I discovered that I had, in fact, been using the wrong slackbuild (3.6 instead of 3.6.2) without realizing it. But thank you all for your help regardless.
Until the next one ;-)
 
Old 03-14-2022, 05:34 PM   #11
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,344

Rep: Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942
One more thread with errors using 14.2 slackbuilds for 15.0

really ?

Everyday ?

I cant understand how , cause slackbuilds default point to 15.0 since some days back.

Last edited by USUARIONUEVO; 03-14-2022 at 05:35 PM.
 
Old 03-14-2022, 10:12 PM   #12
TheNutCase
Member
 
Registered: May 2016
Location: Columbia, South Carolina14
Distribution: Slackware 15.0
Posts: 700

Original Poster
Rep: Reputation: Disabled
i don't call myself "TheNutCase" for nothing .
 
  


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
MuseScore Compiling Error techdude Linux - Software 2 07-26-2015 11:58 AM
[SOLVED] Trouble building Musescore on Slackware 64 Captain Pinkeye Slackware 7 06-30-2014 12:41 PM
[SOLVED] Musescore won't install on Intel 64 bit CPU PC, help please alex polvorilla Linux - Software 3 12-30-2012 02:46 PM

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

All times are GMT -5. The time now is 05:33 PM.

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