Skip to content

Commit

Permalink
remove unused compiler flags
Browse files Browse the repository at this point in the history
no clue why they were there
  • Loading branch information
k-dominik committed Mar 4, 2024
1 parent c691b52 commit a89c0ca
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ if(WITH_OFAST)
endif()
endif()

if (APPLE_ARM64)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mfpu=neon -mfloat-abi=hard")
endif()

check_cxx_compiler_flag("-Wall" HAS_WALL_FLAG)
check_cxx_compiler_flag("-Wextra" HAS_WEXTRA_FLAG)

Expand Down
2 changes: 1 addition & 1 deletion pkg/conda/fastfilters/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cd build_conda

EXTRA_CMAKE_ARGS=""
if [[ `uname` == 'Darwin' ]] && [[ ${ARCH} == 'arm64' ]]; then
EXTRA_CMAKE_ARGS="-DUSE_SIMDE_ON_ARM=ON -DAPPLE_ARM64=ON"
EXTRA_CMAKE_ARGS="-DUSE_SIMDE_ON_ARM=ON"
fi

cmake \
Expand Down

0 comments on commit a89c0ca

Please sign in to comment.