Commit 5bdc8f9d89

Andrew Kelley <andrew@ziglang.org>
2023-01-29 20:57:24
build.zig: llvm c++ files require -std=c++17
1 parent 501a6bd
Changed files (1)
build.zig
@@ -524,7 +524,7 @@ fn addCompilerStep(b: *Builder) *std.build.LibExeObjStep {
 }
 
 const exe_cflags = [_][]const u8{
-    "-std=c++14",
+    "-std=c++17",
     "-D__STDC_CONSTANT_MACROS",
     "-D__STDC_FORMAT_MACROS",
     "-D__STDC_LIMIT_MACROS",