Created
March 24, 2016 20:59
-
-
Save ericfont/2f1d108ca8620561f3cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root@dd791298ffa0:/MuseScore# make clean | |
| rm -rf build.debug build.release | |
| rm -rf win32build win32install | |
| root@dd791298ffa0:/MuseScore# make | |
| if test ! -d build.release; then mkdir build.release; fi; \ | |
| cd build.release; \ | |
| export PATH="/usr/bin/arm-linux-gnueabihf-pkg-config:/usr/bin/arm-linux-gnueabihf-pkg-config:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/include"; \ | |
| export PKG_CONFIG_PATH=/usr/bin/arm-linux-gnueabihf-pkg-config;\ | |
| cmake -DCMAKE_BUILD_TYPE=RELEASE \ | |
| -DCMAKE_TOOLCHAIN_FILE="/MuseScore/build/Linux+BSD/jessie-crosscompile-armhf.cmake" \ | |
| -DCMAKE_LIBRARY_PATH="/usr/lib/arm-linux-gnueabihf" \ | |
| -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/local/sbin/pkg-config (found version "0.28") | |
| -- checking for module 'libpulse' | |
| -- found libpulse, version 5.0 | |
| CMake Error at CMakeLists.txt:239 (message): | |
| Error: ALSA support requested (BUILD_ALSA=ON), but ALSA >= 1.0.0 was not | |
| found. | |
| CMake Error at CMakeLists.txt:273 (message): | |
| Error: Pulseaudio support requested (BUILD_PULSEAUDIO=ON), but Pulseaudio | |
| was not found. | |
| LAME not found. | |
| -- jack (jack audio connection kit) >= 0.98.0 found. jack support enabled. | |
| -- Portaudio found. Portaudio support enabled. /usr/include /usr/lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf/libportaudio.so | |
| -- 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:47: 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