Gets the dependencies of a library if it is found on this SoSource @param soName Name of library to inspect @return An array of library names upon which soName needs for linking @throws IOException if soName is found but there is an error reading it
(String soName)
| 123 | * @throws IOException if {@code soName} is found but there is an error reading it |
| 124 | */ |
| 125 | @Nullable |
| 126 | public String[] getLibraryDependencies(String soName) throws IOException { |
| 127 | return null; |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Add an element to an LD_LIBRARY_PATH under construction. |
no outgoing calls
no test coverage detected