Re: Oof!

Bill Janssen (janssen@parc.xerox.com)
Thu, 27 Jan 1994 17:40:10 PST

I can't get it to build. The error is in attempting to link python:

import.o(.text+0x9a4): undefined reference to `dlopen'
import.o(.text+0x9b8): undefined reference to `dlerror'
import.o(.text+0x9d4): undefined reference to `dlsym'

which are of course from the shared library `libdl', which the GNU
linker (gcc version 2.4) doesn't seem to know how to use. I can't see
how to tell it to use it, either. I can't figure out how to tell
configure to use `cc' rather than `gcc', either.

Also, how do I build with `-g' instead of `-o'? Does this configuration
stuff have some file that you can edit to tell it some things? Or do
you have to edit each resultant Makefile by hand (ugh!)?

Bill