We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fca1f6 commit 649d0c3Copy full SHA for 649d0c3
1 file changed
tdlight-java/src/main/java/it/tdlight/util/Native.java
@@ -90,7 +90,7 @@ private static Stream<String> getAllNormalizedArchitectures() {
90
private static Stream<String> getNormalizedArchitectures(String os, String arch) {
91
switch (os) {
92
case "linux": {
93
- 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");
94
}
95
case "windows": {
96
return Stream.of("windows_" + arch);
0 commit comments