Skip to content

Commit 319cfd6

Browse files
use c++20
1 parent 26c9917 commit 319cfd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/wasm/StagedConcolicMiniWasm.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@ object WasmToCppCompiler {
10801080
}
10811081

10821082
import sys.process._
1083-
val command = s"g++ -std=c++17 $outputCpp -o $outputExe -O3 -g " + generated.headerFolders.map(f => s"-I$f").mkString(" ")
1083+
val command = s"g++ -std=c++20 $outputCpp -o $outputExe -O3 -g " + generated.headerFolders.map(f => s"-I$f").mkString(" ")
10841084
if (command.! != 0) {
10851085
throw new RuntimeException(s"Compilation failed for $outputCpp")
10861086
}

0 commit comments

Comments
 (0)