Skip to content

Instantly share code, notes, and snippets.

@ericfont
Created March 24, 2016 06:19
Show Gist options
  • Save ericfont/e2680dd8305829600d9f to your computer and use it in GitHub Desktop.
Save ericfont/e2680dd8305829600d9f to your computer and use it in GitHub Desktop.
root@cc012d12e3db:/MuseScore# make
if test ! -d build.release; then mkdir build.release; fi; \
cd build.release; \
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin; \
export LD_LIBRARY_PATH=/usr/lib/arm-linux-gnueabihf; \
cmake -DCMAKE_BUILD_TYPE=RELEASE \
-DCMAKE_TOOLCHAIN_FILE=build/Linux+BSD/jessie-crosscompile-armhf.cmake \
-DCMAKE_INSTALL_PREFIX=""/usr/local"" \
-DMSCORE_INSTALL_SUFFIX="""" \
-DMUSESCORE_LABEL="""" \
-DBUILD_LAME=""ON"" \
-DCMAKE_SKIP_RPATH=""FALSE"" ..; \
make lrelease; \
make -j 8; \
-- The C compiler identification is GNU 4.9.2
-- The CXX compiler identification is GNU 4.9.2
-- Check for working C compiler: /usr/bin/arm-linux-gnueabihf-gcc
-- Check for working C compiler: /usr/bin/arm-linux-gnueabihf-gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/arm-linux-gnueabihf-g++
-- Check for working CXX compiler: /usr/bin/arm-linux-gnueabihf-g++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
Doxygen not found
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.28")
-- checking for module 'libpulse'
-- package 'libpulse' not found
CMake Error at CMakeLists.txt:280 (message):
Error: ALSA support requested (BUILD_ALSA=ON), but ALSA >= 1.0.0 was not
found.
CMake Error at CMakeLists.txt:310 (message):
Error: Pulseaudio support requested (BUILD_PULSEAUDIO=ON), but Pulseaudio
was not found.
LAME not found.
-- jack (jack audio connection kit) >= 0.98.0 not found
CMake Error at CMakeLists.txt:374 (MESSAGE):
Error: jack support requested (BUILD_JACK=ON), but jack was not found
CMake Error at CMakeLists.txt:396 (message):
Error: Portaudio support requested (BUILD_PORTAUDIO=ON), but portaudio-2.0
Version 19 was not found (package portaudio19-dev)
-- Found gzip. Man pages will be compressed.
-- Found ln. Symlink aliases will be created for MuseScore executable and the man pages.
-- precompiled header generation
-- Creating directory /MuseScore/build.release/include/freetype/config
-- Creating file /MuseScore/build.release/include/freetype/config/ftconfig.h
-- Looking for unistd.h
-- Looking for unistd.h - found
-- Looking for fcntl.h
-- Looking for fcntl.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Creating file /MuseScore/build.release/include/freetype/config/ftoption.h
-- Configuring incomplete, errors occurred!
See also "/MuseScore/build.release/CMakeFiles/CMakeOutput.log".
make[1]: Entering directory '/MuseScore/build.release'
make[1]: *** No rule to make target 'lrelease'. Stop.
make[1]: Leaving directory '/MuseScore/build.release'
make[1]: Entering directory '/MuseScore/build.release'
make[1]: *** No targets specified and no makefile found. Stop.
make[1]: Leaving directory '/MuseScore/build.release'
Makefile:46: recipe for target 'release' failed
make: *** [release] Error 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment