We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2fb8ecc + df4153b commit 8c74771Copy full SHA for 8c74771
CMakeLists.txt
@@ -1,7 +1,7 @@
1
# CMakeLists.txt
2
cmake_minimum_required(VERSION 3.21)
3
project(fastplong VERSION 0.2.1)
4
-set(CMAKE_CXX_STANDARD 23)
+set(CMAKE_CXX_STANDARD 17)
5
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
6
7
# Find dependencies provided by vcpkg (via vcpkg.cmake)
@@ -29,6 +29,7 @@ endif()
29
30
if (CMAKE_CXX_COMPILER_ARCHITECTURE_ID MATCHES "x86_64")
31
add_compile_options(-march=haswell -maes)
32
+ # add_link_options(-pg)
33
## HWY_AVX3 which is 512
34
# SET(GCC_COVERAGE_COMPILE_FLAGS "-march=sapphirerapids")
35
endif()
@@ -137,4 +138,4 @@ install(TARGETS fastplong
137
138
CONFIGURATIONS Release
139
RUNTIME
140
DESTINATION bin
-)
141
+)
0 commit comments