summaryrefslogtreecommitdiff
path: root/functions.cmake
diff options
context:
space:
mode:
authorFrederik Carlier <frederik.carlier@quamotion.mobi>2017-01-31 00:21:49 +0100
committerJan Vorlicek <janvorli@microsoft.com>2017-01-31 00:21:49 +0100
commit55268bf4b98b6e1f202179d9a5ebc876dd154230 (patch)
treeda57ec58810f4d5e40a95252bb8c7315f443fe42 /functions.cmake
parentb390ea94d52a9089e24973a12a6413bc8eb9bc3d (diff)
downloadcoreclr-55268bf4b98b6e1f202179d9a5ebc876dd154230.tar.gz
coreclr-55268bf4b98b6e1f202179d9a5ebc876dd154230.tar.bz2
coreclr-55268bf4b98b6e1f202179d9a5ebc876dd154230.zip
Support cross-building CoreCLR for arm64 Android (#9173)
* Support cross-building CoreCLR for arm64 Android * Link gcc_s before libunwind
Diffstat (limited to 'functions.cmake')
-rw-r--r--functions.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.cmake b/functions.cmake
index f2c52daf5e..7d69dcb707 100644
--- a/functions.cmake
+++ b/functions.cmake
@@ -222,7 +222,7 @@ endfunction()
function(verify_dependencies targetName errorMessage)
# We don't need to verify dependencies on OSX, since missing dependencies
# result in link error over there.
- if (NOT CLR_CMAKE_PLATFORM_DARWIN)
+ if (NOT CLR_CMAKE_PLATFORM_DARWIN AND NOT CLR_CMAKE_PLATFORM_ANDROID)
add_custom_command(
TARGET ${targetName}
POST_BUILD