Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jperedadnr committed Sep 9, 2024
1 parent 465ca9d commit a5bdb55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public LinuxTargetConfiguration(ProcessPaths paths, InternalProjectConfiguration
public boolean compile() throws IOException, InterruptedException {
if (isAarch64) {
projectConfiguration.setUsePrismSW(true); // for now, when compiling for AArch64, we should not assume hw rendering
Logger.logSevere("Error: building a native image is not supported on Linux AArch64 with this version yet.\nPlease use GluonFX plugins up until 1.0.23");
Logger.logSevere("Error: Building a native image is not yet supported on Linux AArch64 with this version.\nPlease use GluonFX plugin version 1.0.23 instead.");
return false;
}
return super.compile();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ private List<String> asListOfWholeArchiveLinkFlags(List<String> libraries) {

@Override
public boolean compile() throws IOException, InterruptedException {
Logger.logSevere("Error: building a native image is not supported on Windows with this version yet.\nPlease use GluonFX plugins up until 1.0.23");
Logger.logSevere("Building a native image is not yet supported on Windows with this version.\nPlease use GluonFX plugin version 1.0.23 instead.");
return false;
}

Expand Down

0 comments on commit a5bdb55

Please sign in to comment.