Skip to content

Commit

Permalink
add some log
Browse files Browse the repository at this point in the history
  • Loading branch information
wenlinlee committed Jun 22, 2024
1 parent c5dcba9 commit 3d63e60
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/fisco/solc/compiler/Solc.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public Solc(boolean sm, Version version) {
}
} catch (IOException e) {
logger.error(" Can't init solc compiler, e: ", e);
e.printStackTrace();
throw new RuntimeException("Can't init solc compiler: ", e);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,7 @@ public static String runGetVersionOutput(boolean sm, Version version) throws IOE
try {
process.waitFor();
} catch (InterruptedException e) {
e.printStackTrace();
Thread.currentThread().interrupt();
throw new RuntimeException(e);
}
Expand Down
Binary file modified src/main/resources/native/ecdsa/linux/0.8.26/arm/solc/solc
100755 → 100644
Binary file not shown.
Binary file modified src/main/resources/native/sm/linux/0.8.26/arm/solc/solc
Binary file not shown.

0 comments on commit 3d63e60

Please sign in to comment.