Skip to content

Commit

Permalink
Change log type
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Jan 28, 2024
1 parent ac51d8d commit 352b35c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private boolean compile(BuildConfig config, CustomFileDescriptor childTarget, Ar
compilerCommands.addAll(cppFlags);
compilerCommands.addAll(headerDirs);
compilerCommands.add("@" + cppList.path());
System.out.println("##### COMPILE #####");
System.err.println("##### COMPILE #####");
boolean flag = JProcess.startProcess(config.buildDir.file(), compilerCommands);
if(!flag) {
return false;
Expand Down Expand Up @@ -133,7 +133,7 @@ private boolean link(BuildConfig config, CustomFileDescriptor childTarget) {
linkerCommands.clear();
onLink(compiledObjects, objList.path(), libPath);

System.out.println("##### LINK #####");
System.err.println("##### LINK #####");
return JProcess.startProcess(childTarget.file(), linkerCommands);
}

Expand Down

0 comments on commit 352b35c

Please sign in to comment.