From: orestis Date: Wed, 19 Nov 2014 21:26:36 +0000 (+0200) Subject: Remove redundant -mfpu=neon flag. X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~2822^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aad98e545fa0c48681d67e740865c9c518d00055;p=platform%2Fupstream%2Fopencv.git Remove redundant -mfpu=neon flag. This flag is already added in line 131. --- diff --git a/cmake/OpenCVCompilerOptions.cmake b/cmake/OpenCVCompilerOptions.cmake index 909e2a4..2f9068c 100644 --- a/cmake/OpenCVCompilerOptions.cmake +++ b/cmake/OpenCVCompilerOptions.cmake @@ -171,10 +171,6 @@ if(CMAKE_COMPILER_IS_GNUCXX) endif() endif() - if(ENABLE_NEON) - add_extra_compiler_option(-mfpu=neon) - endif() - # Profiling? if(ENABLE_PROFILING) add_extra_compiler_option("-pg -g")