Skip to content

Instantly share code, notes, and snippets.

@ericfont
Created March 24, 2016 05:20
Show Gist options
  • Save ericfont/09c3729cec663d3e5856 to your computer and use it in GitHub Desktop.
Save ericfont/09c3729cec663d3e5856 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; \
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
CMake Error at /usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfig.cmake:27 (message):
The imported target "Qt5::Core" references the file
"/usr/lib/arm-linux-gnueabihf/qt5/bin/moc"
but this file does not exist. Possible reasons include:
* The file was deleted, renamed, or moved to another location.
* An install or uninstall procedure did not complete successfully.
* The installation package was faulty and contained
"/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfigExtras.cmake"
but not all the files it references.
Call Stack (most recent call first):
/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfigExtras.cmake:17 (_qt5_Core_check_file_exists)
/usr/lib/arm-linux-gnueabihf/cmake/Qt5Core/Qt5CoreConfig.cmake:158 (include)
build/FindQt5Transitional.cmake:2 (find_package)
CMakeLists.txt:46 (include)
-- 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