On 7/26/05, sam strauss <[EMAIL PROTECTED]> wrote: > Hi > During the compilation of the jdk I'm getting a bunch of errors: > zip.cpp:undefined reference to `deflate` > zip.cpp:undefined reference to `deflateEnd` > etc ... > I'm not using any optimization flag, gcc-3.4.4 > it seems like some sybols are missing, I've looked in all the files and no > definition of deflate(&, &) found.
deflate and deflateEnd are defined in zlib. Usually the undefined errors show up during linking, the above looks like it is during the compile phase. It would be helpful if you could post a few lines before the error. -- Tushar Teredesai mailto:[EMAIL PROTECTED] http://www.linuxfromscratch.org/~tushar/ -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
