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
echo"Error: could not find OpenMP runtime library: libgomp.so.1"
125
+
echo"Please install the OpenMP runtime library runtime libraries:"
126
+
echo" On Debian based systems: apt-get install libgomp1"
127
+
echo" On Oracle Linux 7 and 8: yum install libgomp"
128
+
echo" Note: Oracle Linux 8 should contain libgomp by default"
129
+
res=1
130
+
fi
131
+
if which gfortran > /dev/null 2> /dev/null;then
132
+
echo"Note: if you intend to install R packages you may need additional packages."
133
+
echo"The following packages should cover the most commonly used R packages:"
134
+
echo" On Debian based systems: apt-get install build-essential gfortran libxml2 libc++-dev"
135
+
echo" On Oracle Linux 7 and 8: yum groupinstall 'Development Tools'"
136
+
if [[ $res!= 0 ]];then
137
+
echo"Caution: you still need to install gfortran3 runtime libraries on all systems where this version is not the default (Ubuntu 18 or higher, Oracle Linux 8 or higher)."
138
+
fi
139
+
fi
103
140
if [[ $res!= 0 ]];then
104
-
echo"Cannot build a simple C program linking with libgfortran, libgcc_s, and libquadmath."
105
-
echo"Please install GCC and gfortran using:"
106
-
echo" On Debian based systems: sudo apt-get install build-essential gfortran"
0 commit comments