You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: com.oracle.truffle.r.native/run/fastr_tools/configure_fastr
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,14 @@ done
64
64
>&2echo"Tool 'ldconfig' is not available. Maybe you need to run this as a root?"
65
65
exit 2
66
66
fi
67
+
ldconfig -p > /dev/null 2>&1
68
+
ldconfig_res=$?
69
+
if [[ $ldconfig_res-ne 0 ]];then
70
+
echo"Cannot run ldconfig to check the availability of some libraries on your system."
71
+
echo"The only requirement of FastR on most Linux distributions is libgomp.so.1. You can ensure manually that this library is not missing on your system."
0 commit comments