Skip to content

Commit 048e2f3

Browse files
chore: use c++17 to build core library
std::filesystem usage requires c++17
1 parent 20ab8dc commit 048e2f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ cc_library(
7676
includes = ["include"],
7777
copts = select({
7878
":windows": ["/std:c++17"],
79-
"//conditions:default": [],
79+
"//conditions:default": ["-std=c++17"],
8080
}),
8181
defines = [
8282
"CODSPEED_VERSION=\\\"{}\\\"".format(CODSPEED_VERSION),

0 commit comments

Comments
 (0)