Displaying 2 results from an estimated 2 matches for "zsysv".
Did you mean:
sysv
2001 Nov 18
1
Configuration: libpng needs zlib, but ...
...AC_CHECK_LIB(png, png_create_write_struct, [
BITMAP_LIBS="${BITMAP_LIBS} -lpng -lz"
AC_DEFINE(HAVE_PNG)
], , ${LIBS})
], AC_MSG_RESULT([no]))
])
did fail:
gcc.exe -o conftest.exe -g -m486 -Zmt -Ig:/include -I/xfree86/include
-Zmt -Zcrtdll -Zsysv-signals conftest.c -lpng -lsocket -lreadline -ldl
-lncurses -lm -lcExt
g:\lib/png.a(pngwrite.o): Undefined symbol _deflateEnd referenced from
text segment
g:\lib/png.a(pngwrite.o): Undefined symbol _deflate referenced from text
segment
g:\lib/png.a(png.o): Undefined symbol _inflateReset referenced...
2007 May 13
1
Help understanding LAPACK symbol resolution
R developers,
I am trying to understand how symbols are resolved, so that I can
configure a package that I contributed to, and so that I can provide
guidance to (linux / OSX) users of the package. To be concrete, my
package uses the LAPACK Fortran symbol zsysv. This is not in
libRlapack, but is defined on my system in the library
/usr/lib64/liblapack.so.
* I suspect that the reason the symbol is not in libRlapack is just
one of economy, i.e., no use for the symbol in R routines, rather
than for other nefarious reasons (?? some fundamental incompatib...