Skip to content

Commit

Permalink
Centos9 support for loading shared libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
Deepa8 committed Jun 27, 2024
1 parent 006a782 commit 73aaee2
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ class VeloxListenerApi extends ListenerApi {
new SharedLibraryLoaderUbuntu2004
} else if (systemName.contains("Ubuntu") && systemVersion.startsWith("22.04")) {
new SharedLibraryLoaderUbuntu2204
} else if (systemName.contains("CentOS") && systemVersion.startsWith("9")) {
new SharedLibraryLoaderCentos9
} else if (systemName.contains("CentOS") && systemVersion.startsWith("8")) {
new SharedLibraryLoaderCentos8
} else if (systemName.contains("CentOS") && systemVersion.startsWith("7")) {
Expand Down

0 comments on commit 73aaee2

Please sign in to comment.