Skip to content

Commit

Permalink
Add gcc builds
Browse files Browse the repository at this point in the history
  • Loading branch information
cavallium committed Jun 5, 2023
1 parent 6fca1f6 commit 649d0c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdlight-java/src/main/java/it/tdlight/util/Native.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private static Stream<String> getAllNormalizedArchitectures() {
private static Stream<String> getNormalizedArchitectures(String os, String arch) {
switch (os) {
case "linux": {
return Stream.of("linux_" + arch + "_ssl1", "linux_" + arch + "_ssl3");
return Stream.of("linux_" + arch + "_ssl1", "linux_" + arch + "_ssl3", "linux_" + arch + "_gcc_ssl1", "linux_" + arch + "_gcc_ssl3");
}
case "windows": {
return Stream.of("windows_" + arch);
Expand Down

0 comments on commit 649d0c3

Please sign in to comment.