Skip to content

Commit

Permalink
build, refactor: detect musl compiler.
Browse files Browse the repository at this point in the history
  • Loading branch information
xicilion committed Jan 12, 2023
1 parent 2b35c6e commit 833aaf8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build_tools
6 changes: 5 additions & 1 deletion v8/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ endif()

include(cmake/options.cmake)

include(cmake/v8-${ARCH}-${BUILD_OS}.cmake)
if("${BUILD_OS}" STREQUAL "Alpine")
include(cmake/v8-${ARCH}-Linux.cmake)
else()
include(cmake/v8-${ARCH}-${BUILD_OS}.cmake)
endif()

include(../build_tools/cmake/Library.cmake)

0 comments on commit 833aaf8

Please sign in to comment.