Skip to content

Commit

Permalink
fix mips compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
vc60er committed Aug 6, 2022
1 parent bcc6642 commit 3752c43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMake/Utilities.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ function(build_dependency lib_name)
message(FATAL_ERROR "CMake step for lib${lib_name} failed: ${result}")
endif()
execute_process(
COMMAND ${CMAKE_COMMAND} --build . -v
COMMAND ${CMAKE_COMMAND} --build .
RESULT_VARIABLE result
WORKING_DIRECTORY ${OPEN_SRC_INSTALL_PREFIX}/lib${lib_name})
if(result)
message(FATAL_ERROR "CMake step for lib${lib_name} failed: ${result}")
endif()

# file(REMOVE_RECURSE ${OPEN_SRC_INSTALL_PREFIX}/lib${lib_name})
file(REMOVE_RECURSE ${OPEN_SRC_INSTALL_PREFIX}/lib${lib_name})
endfunction()

function(enableSanitizer SANITIZER)
Expand Down

0 comments on commit 3752c43

Please sign in to comment.