Skip to content

Commit 5281ea9

Browse files
committed
cmake: Check dependencies of other MinGW toolchain system DLLs.
1 parent 17e1d5c commit 5281ea9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmake/CheckDependencies.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ file (GET_RUNTIME_DEPENDENCIES
1010
UNRESOLVED_DEPENDENCIES_VAR UNRESOLVED_DEPENDENCIES
1111
)
1212
set (DEPENDENCIES ${RESOLVED_DEPENDENCIES} ${UNRESOLVED_DEPENDENCIES})
13-
list (FILTER DEPENDENCIES INCLUDE REGEX "winpthread")
13+
list (FILTER DEPENDENCIES INCLUDE REGEX [[^(libgcc|libstdc\+\+|libwinpthread|libssp)]])
1414
if (DEPENDENCIES)
15-
message (SEND_ERROR "Unexpected dependency: ${DEPENDENCIES}")
15+
message (SEND_ERROR "Unexpected ${TARGET} dependencies: ${DEPENDENCIES}")
1616
endif ()

0 commit comments

Comments
 (0)