search for: r_zlib

Displaying 2 results from an estimated 2 matches for "r_zlib".

Did you mean: r_lib
2014 Dec 15
1
R build failure under gcc 4.9's link time optimization
...LMOD.a COLAMD.a AMD.a SuiteSparse_config.a . One way of fixing R is: diff --git a/src/main/Makefile.in b/src/main/Makefile.in index 908b7ab..ce015b4 100644 --- a/src/main/Makefile.in +++ b/src/main/Makefile.in @@ -86,7 +86,7 @@ ALL_CPPFLAGS = $(ZLIB_CPPFLAGS) $(BZLIB_CPPFLAGS) $(PCRE_CPPFLAGS) \ R_ZLIBS = @BUILD_ZLIB_TRUE@ ../extra/zlib/libz.a R_BZLIBS = @BUILD_BZLIB_TRUE@ ../extra/bzip2/libbz2.a R_PCRE = @BUILD_PCRE_TRUE@ ../extra/pcre/libpcre.a -R_TRE = @BUILD_TRE_TRUE@ ../extra/tre/libtre.a +R_TRE = @BUILD_TRE_TRUE@ `ls ../extra/tre/*.o` R_XDR = @BUILD_XDR_TRUE@ ../extra/xdr/libxdr.a R_XZ...
2001 Nov 18
1
Configuration: libpng needs zlib, but ...
...not included in the command line (-lz). And this has to do with the order of calls in configure in: libz is looked for AFTER the bitmap libs, so it is not in $(LIBS) yet: ...... ## Bitmap headers and libraries. R_BITMAPS ## XDR headers and library routines. R_XDR ## zlib headers and libraries. R_ZLIB ## POSIX times. R_USES_LEAPSECONDS ...... I think either the order in configure.in should be changed or in R.m4 the zlib should be included into the OTHER-LIBRARIES branch of the macro. -- Thomas Hoffmann Telephone: 49-351-4598831 thoffman at zappa.sax.de...