Skip to content

Commit

Permalink
moved LA in separate header
Browse files Browse the repository at this point in the history
  • Loading branch information
NoNaeAbC committed Mar 14, 2021
1 parent 46f8bb3 commit ef47e31
Show file tree
Hide file tree
Showing 13 changed files with 1,426 additions and 1,594 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ if (UNIX)
elseif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
set(CMAKE_CXX_FLAGS "-Wall -Wextra")
set(CMAKE_CXX_FLAGS_DEBUG "-g -DDEBUG -O3 -ffast-math -march=native -lmpfr -lgmp")
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -march=native -ffast-math -lmpfr -lgmp")
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -march=native -ffast-math -lmpfr -lgmp -flto")
else ()

set(CMAKE_CXX_FLAGS "-Wall -Wextra")
set(CMAKE_CXX_FLAGS_DEBUG "-g -DDEBUG -O3 -ffast-math")
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -ffast-math")
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -ffast-math -flto")
endif ()

endif ()
Loading

0 comments on commit ef47e31

Please sign in to comment.