Skip to content

Commit c39e6bd

Browse files
committed
bugfix the bugfix
1 parent 19be33c commit c39e6bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library_path_resolver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ static bool FindInEnvVar(const char* env_var, const char* library_name, char* re
167167
// Function to find library in standard paths
168168
static bool FindInStandardPaths(const char* library_name, char* resolved_path) {
169169
#if defined(__ANDROID__)
170-
const char* standard_paths[] = {"/system/lib64", "/system/lib", "/system/vendor/lib64", "/system/vendor/lib", NULL}; #put lib64 first bc otherwise fails sometimes on non64 systems
170+
const char* standard_paths[] = {"/system/lib64", "/system/lib", "/system/vendor/lib64", "/system/vendor/lib", NULL};
171171
#elif defined(__APPLE__)
172172
const char* standard_paths[] = {"/usr/lib", "/lib", "/usr/local/lib", "/opt/local/lib", "/opt/homebrew/lib", NULL};
173173
#else

main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
#include "shims.h"
3737

3838
const char* NAME = "cliffi";
39-
const char* VERSION = "v1.11.1";
39+
const char* VERSION = "v1.11.2";
4040
const char* BASIC_USAGE_STRING = "<library> <return_typeflag> <function_name> [[-typeflag] <arg>.. [ ... <varargs>..] ]\n";
4141

4242

0 commit comments

Comments
 (0)