Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove -mfpu=neon for aarch64 #50

Open
wants to merge 1 commit into
base: openvx_1.3
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions cmake_utils/CMake_linux_tools.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,9 @@ if (CYGWIN)
endif (CYGWIN)

if(BUILD_X64)
if (EXPERIMENTAL_USE_VENUM OR OPENVX_USE_TILING OR EXPERIMENTAL_USE_OPENCL)
set(ARCH_BIT "-mfpu=neon")
else ()
if (NOT EXPERIMENTAL_USE_VENUM AND NOT OPENVX_USE_TILING AND NOT EXPERIMENTAL_USE_OPENCL)
set(ARCH_BIT -m64 )
endif(EXPERIMENTAL_USE_VENUM OR OPENVX_USE_TILING OR EXPERIMENTAL_USE_OPENCL)
endif(NOT EXPERIMENTAL_USE_VENUM AND NOT OPENVX_USE_TILING AND NOT EXPERIMENTAL_USE_OPENCL)
else()
if (TARGET_CPU STREQUAL "Atom")
# architecture will be according to ATOM
Expand Down