Skip to content

Commit 856d61f

Browse files
committed
fix: fixed DynamicLibrary detection in linux
1 parent 51a34b5 commit 856d61f

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ packages:
7070
path: ".."
7171
relative: true
7272
source: path
73-
version: "3.5.1"
73+
version: "3.5.2"
7474
ffi:
7575
dependency: transitive
7676
description:

lib/bridge/binding.dart

+10-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import 'package:fast_rsa/fast_rsa.dart';
99
import 'package:ffi/ffi.dart';
1010
import 'package:fast_rsa/bridge/ffi.dart';
1111
import 'package:fast_rsa/bridge/isolate.dart';
12+
import 'package:path/path.dart' as Path;
1213

1314
class Binding {
1415
static final String _callFuncName = 'RSABridgeCall';
@@ -121,8 +122,15 @@ class Binding {
121122
if (Platform.isIOS) {
122123
return ffi.DynamicLibrary.process();
123124
}
124-
if (Platform.isLinux) {
125-
return ffi.DynamicLibrary.open("$_libraryName.so");
125+
if (Platform.isLinux || Platform.isFuchsia) {
126+
try {
127+
return ffi.DynamicLibrary.open("$_libraryName.so");
128+
} catch (_) {
129+
var binary = File("/proc/self/cmdline").readAsStringSync();
130+
var suggestedFile =
131+
Path.join(Path.dirname(binary), "lib", "$_libraryName.so");
132+
return ffi.DynamicLibrary.open(suggestedFile);
133+
}
126134
}
127135
try {
128136
return ffi.DynamicLibrary.open("$_libraryName.so");

linux/CMakeLists.txt

+5-13
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,11 @@ target_include_directories(${PLUGIN_NAME} INTERFACE
1818
target_link_libraries(${PLUGIN_NAME} PRIVATE flutter)
1919
target_link_libraries(${PLUGIN_NAME} PRIVATE PkgConfig::GTK)
2020

21-
# List of absolute paths to libraries that should be bundled with the plugin
22-
set(fast_rsa_bundled_libraries
23-
""
24-
PARENT_SCOPE
25-
)
26-
27-
set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/../../bundle")
28-
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
29-
set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE)
30-
endif()
31-
set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib")
3221
set(LIBRSA_BRIDGE "librsa_bridge.so")
3322
set(LIBRSA_BRIDGE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/shared/${LIBRSA_BRIDGE}")
34-
install(CODE "file(REMOVE_RECURSE \"${INSTALL_BUNDLE_LIB_DIR}/${LIBRSA_BRIDGE}\")" COMPONENT Runtime)
35-
install(FILES "${LIBRSA_BRIDGE_PATH}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" COMPONENT Runtime)
3623

24+
# List of absolute paths to libraries that should be bundled with the plugin
25+
set(fast_rsa_bundled_libraries
26+
${LIBRSA_BRIDGE_PATH}
27+
PARENT_SCOPE
28+
)

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fast_rsa
22
description: library for use RSA with support for android and ios, macOS, linux, windows, web and hover
3-
version: 3.5.1
3+
version: 3.5.2
44
homepage: https://github.com/jerson/flutter-rsa
55

66
environment:

0 commit comments

Comments
 (0)