Skip to content

Commit

Permalink
Don't assume SSE is present (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
peastman authored Nov 14, 2024
1 parent f09aa14 commit 95bfd46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ SET (CMAKE_CXX_STANDARD 11)
# Set flags for linking on mac
IF(APPLE)
SET (CMAKE_INSTALL_NAME_DIR "@rpath")
SET(EXTRA_COMPILE_FLAGS "-msse2 -stdlib=libc++")
SET(EXTRA_COMPILE_FLAGS "-stdlib=libc++")
ENDIF(APPLE)

# Select where to install
Expand Down

0 comments on commit 95bfd46

Please sign in to comment.