обновил команду запуска планнера на g++ -O3 -std=c++17

This commit is contained in:
2023-12-03 20:33:43 +03:00
parent 91331ae441
commit db82187212
2 changed files with 3 additions and 14 deletions

View File

@@ -69,7 +69,7 @@ public class RemoteInitialiseUser extends CurrentConnectionPass<String> {
"cd " + Utils.DQuotes(sftpChannel.pwd()), //нужны ли тут кавычки?
"g++ " + starter_code + " -o " + starter,
"g++ " + launcher_code + " -o " + launcher,
"g++ -o3 Planner.cpp -o " + planner,
"g++ -O3 -std=c++17 Planner.cpp -o " + planner,
"chmod 0777 " + starter,
"chmod 0777 " + launcher,
"chmod 0777 " + planner