Skip to content

Commit

Permalink
cmake: Checked for ARMv8 to avoid building ARMv7 converters
Browse files Browse the repository at this point in the history
  • Loading branch information
mbr0wn committed Sep 11, 2015
1 parent 4f3fb3e commit b160595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion host/lib/convert/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ IF(CMAKE_COMPILER_IS_GNUCXX)
CHECK_INCLUDE_FILE_CXX(arm_neon.h HAVE_ARM_NEON_H)
ENDIF(CMAKE_COMPILER_IS_GNUCXX)

IF(HAVE_ARM_NEON_H)
IF(HAVE_ARM_NEON_H AND (${CMAKE_SIZEOF_VOID_P} EQUAL 4))
ENABLE_LANGUAGE(ASM)

LIBUHD_APPEND_SOURCES(
Expand Down

0 comments on commit b160595

Please sign in to comment.