Skip to content
2 changes: 1 addition & 1 deletion hstest/testing/execution/process/cpp_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, source_name: str = None):
self.file_name = self.without_extension

def _compilation_command(self):
return ['g++', '-std', 'c++20', '-pipe', '-O2', '-static', '-o', self.file_name, self.runnable.file]
return ['g++', '-std=c++20', '-pipe', '-O2', '-static', '-o', self.file_name, self.runnable.file]

def _filter_compilation_error(self, error: str) -> str:
return error
Expand Down