no message
This commit is contained in:
@@ -252,7 +252,7 @@ public class UserConnection {
|
||||
boolean planner = module_name.equals("planner");
|
||||
String flags = planner ? getAvailibleCPPStandard(modulesDirectory) : "";
|
||||
String command = "g++ -O3 " + flags + " " + Utils_.DQuotes(module_name + ".cpp") + " -o " + Utils_.DQuotes(module_name);
|
||||
if (planner&& flags.contains("c++17")) command+=" -lstdc++fs";
|
||||
if (planner && flags.contains("c++17")) command += " -lstdc++fs";
|
||||
RemoteFile binary = new RemoteFile(modulesDirectory, module_name);
|
||||
//--
|
||||
if (Exists(binary))
|
||||
@@ -476,7 +476,6 @@ public class UserConnection {
|
||||
System.gc();
|
||||
}
|
||||
*/
|
||||
|
||||
public void waitForFileCreation(RemoteFile file) throws Exception {
|
||||
while (!Exists(file)) {
|
||||
System.out.println(file.full_name + " NOT FOUND");
|
||||
|
||||
Reference in New Issue
Block a user