Skip to content

Commit

Permalink
Fixed Android ABI check to match vulkan/vk_platform.h
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Aug 28, 2017
1 parent 34bdee5 commit ea91908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -859,7 +859,7 @@ if(ANDROID)
endif()

CHECK_C_SOURCE_COMPILES("
#if defined(__ANDROID__) && defined(__ARM_EABI__) && !defined(__ARM_ARCH_7A__)
#if defined(__ANDROID__) && defined(__ARM_ARCH) && __ARM_ARCH < 7
#error Vulkan doesn't work on this configuration
#endif
int main()
Expand Down

0 comments on commit ea91908

Please sign in to comment.