Workaround Broken Library Search Path On Some ARM 32-Bit Systems
This commit is contained in:
parent
8f782099da
commit
d114a2d668
@ -1,5 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
**2.1.3**
|
||||||
|
* Workaround Broken Library Search Path On Some ARM 32-Bit Systems
|
||||||
|
|
||||||
**2.1.2**
|
**2.1.2**
|
||||||
* Fix Library Loading On ARM 32-Bit Systems
|
* Fix Library Loading On ARM 32-Bit Systems
|
||||||
|
|
||||||
|
@ -143,6 +143,10 @@ void bootstrap(int argc, char *argv[]) {
|
|||||||
string_append(&new_ld_path, ":%s", value);
|
string_append(&new_ld_path, ":%s", value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Load ARM Libraries
|
||||||
|
#ifdef __ARM_ARCH
|
||||||
|
string_append(&new_ld_path, "%s", ":/usr/lib/arm-linux-gnueabihf:/usr/arm-linux-gnueabihf/lib");
|
||||||
|
#endif
|
||||||
// Add Full Library Search Path
|
// Add Full Library Search Path
|
||||||
{
|
{
|
||||||
char *value = get_full_library_search_path();
|
char *value = get_full_library_search_path();
|
||||||
|
Loading…
Reference in New Issue
Block a user