I try to compile rsprng on the MacOSX (10.3.9). I got the binary program of libsprng.a from the http://www.biostat.umn.edu/~nali/SoftwareListing.html, but it did not work properly. The following error occurred. ld: table of contents for archive: /usr/local/lib/libsprng.a is out of date; rerun ranlib(1) (can't load from it) Does anyone have a libsprng.a or know how to compile the sprng source file for creating the library? Toshinari Kamakura
Compiling rsprng
3 messages · kamakura, stefano iacus, elijah wright
On 03/set/05, at 06:48, kamakura wrote:
I try to compile rsprng on the MacOSX (10.3.9). I got the binary program of libsprng.a from the http://www.biostat.umn.edu/~nali/SoftwareListing.html, but it did not work properly. The following error occurred. ld: table of contents for archive: /usr/local/lib/libsprng.a is out of date; rerun ranlib(1) (can't load from it)
try sudo ranlib /usr/local/lib/libsprng.a from your terminal stefano
Does anyone have a libsprng.a or know how to compile the sprng source file for creating the library? Toshinari Kamakura
_______________________________________________ R-SIG-Mac mailing list R-SIG-Mac at stat.math.ethz.ch https://stat.ethz.ch/mailman/listinfo/r-sig-mac
I got the binary program of libsprng.a from the http://www.biostat.umn.edu/~nali/SoftwareListing.html, but it did not work properly. The following error occurred. ld: table of contents for archive: /usr/local/lib/libsprng.a is out of date; rerun ranlib(1) (can't load from it) Does anyone have a libsprng.a or know how to compile the sprng source file for creating the library?
recompiling libsprng with a modern GCC is 'difficult', because gcc no longer allows multiline statements in assembler. [yes, this is silly.] at one point i was going to hack together a version that would build with gcc 3.3+, but i haven't had time to work on it. --elijah