Skip to content

Instantly share code, notes, and snippets.

@ShipsWithCannons
Last active June 29, 2016 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ShipsWithCannons/66caece82ccc26980d875e8dc18787d3 to your computer and use it in GitHub Desktop.
Save ShipsWithCannons/66caece82ccc26980d875e8dc18787d3 to your computer and use it in GitHub Desktop.
Running make
set(command "/usr/bin/cmake;-P;/home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/download-LibSndFile.cmake")
execute_process(COMMAND ${command} RESULT_VARIABLE result)
if(result)
set(msg "Command failed (${result}):\n")
foreach(arg IN LISTS command)
set(msg "${msg} '${arg}'")
endforeach()
message(FATAL_ERROR "${msg}")
endif()
set(command "/usr/bin/cmake;-P;/home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/verify-LibSndFile.cmake")
execute_process(COMMAND ${command} RESULT_VARIABLE result)
if(result)
set(msg "Command failed (${result}):\n")
foreach(arg IN LISTS command)
set(msg "${msg} '${arg}'")
endforeach()
message(FATAL_ERROR "${msg}")
endif()
set(command "/usr/bin/cmake;-P;/home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/extract-LibSndFile.cmake")
execute_process(COMMAND ${command} RESULT_VARIABLE result)
if(result)
set(msg "Command failed (${result}):\n")
foreach(arg IN LISTS command)
set(msg "${msg} '${arg}'")
endforeach()
message(FATAL_ERROR "${msg}")
endif()
[ 2%] Performing download step (download, verify and extract) for 'LibSndFile'
CMake Error at /home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/LibSndFile-download-Release;FORCE.cmake:16 (message):
Command failed: 1
'/usr/bin/cmake' '-Dmake=' '-Dconfig=' '-P' '/home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/LibSndFile-download-Release' 'FORCE-impl.cmake'
See also
/home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/LibSndFile-download-*.log
CMakeFiles/LibSndFile.dir/build.make:89: recipe for target 'library-build/src/LibSndFile-stamp/LibSndFile-download' failed
make[2]: *** [library-build/src/LibSndFile-stamp/LibSndFile-download] Error 1
CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/LibSndFile.dir/all' failed
make[1]: *** [CMakeFiles/LibSndFile.dir/all] Error 2
Makefile:83: recipe for target 'all' failed
make: *** [all] Error 2
CMake Error: Error processing file: /home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/LibSndFile-download-Release
set(command "/usr/bin/cmake;-Dmake=${make};-Dconfig=${config};-P;/home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/LibSndFile-download-Release;FORCE-impl.cmake")
execute_process(
COMMAND ${command}
RESULT_VARIABLE result
OUTPUT_FILE "/home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/LibSndFile-download-out.log"
ERROR_FILE "/home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/LibSndFile-download-err.log"
)
if(result)
set(msg "Command failed: ${result}\n")
foreach(arg IN LISTS command)
set(msg "${msg} '${arg}'")
endforeach()
set(msg "${msg}\nSee also\n /home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/LibSndFile-download-*.log")
message(FATAL_ERROR "${msg}")
else()
set(msg "LibSndFile download command succeeded. See also /home/mathias/Khronos/build/library-build/src/LibSndFile-stamp/LibSndFile-download-*.log")
message(STATUS "${msg}")
endif()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment