AWARE [SYSTEMS] Imaging expertise for the Delphi developer
AWare Systems, Imaging expertise for the Delphi developer, Home TIFF and LibTiff Mailing List Archive

LibTiff Mailing List

TIFF and LibTiff Mailing List Archive
November 1996

Previous Thread
Next Thread

Previous by Thread
Next by Thread

Previous by Date
Next by Date

Contact

The TIFF Mailing List Homepage
This list is run by Frank Warmerdam
Archive maintained by AWare Systems



Valid HTML 4.01!



Thread

1996.11.07 14:24 "Unresolved __eprintf", by Keith Arbuckle
1996.11.07 17:24 "Re: Unresolved __eprintf", by Gary Burgess
1996.11.07 18:40 "Re: Unresolved __eprintf", by James Crawford Ralston
1996.11.07 23:05 "Re: Unresolved __eprintf", by Adam P Jenkins

1996.11.07 17:24 "Re: Unresolved __eprintf", by Gary Burgess

> The seemed fine until I tried to link in the tiff library with ImageMagick
> which produced the error message "Unresolved:  __eprintf".

This happens when one (or more) of your libraries are built with gcc, and you
try and link using something other than the GNU linker. The __eprintf()
function lives in one of the GNU libraries.

I can think of three ways to fix the problem. You could a) build entirely
with gcc, b) identify and link against the library that contains __eprintf(),
or c) do what I have done in the past - create a stub which does nothing, ie.
create eprintf.c like so:

void __eprintf(void)
{
}

This is only viable if you don't care too much about what __eprintf is
supposed to do!

Good luck.

---------------------------------------------------------------------------
Gary Burgess                                       gburgess@zgs.com
Zeh Graphic Systems, Inc.                          (713) 589 7757
1155 Dairy Ashford, Suite 250                      (713) 558 3043 (Fax)
Houston, TX 77079
---------------------------------------------------------------------------