Index: [thread] [date] [subject] [author]
  From: Jason Grosland <jcg3@cs.duke.edu>
  To  : 
  Date: Fri, 5 Mar 1999 11:03:26 -0500

Re: Still having trouble with libraries

On Thu, 4 Mar 1999, Donald Ellis Flood wrote:

> We are still having problems writing a Makefile for libraries.  We can

a few things i saw in your makefile:

> MYLIBS  = afs/acpub.duke.edu/users/d/e/def5/cps108/scoobi
           ^
you need a leading '/' before this, or it's never going to know where the
library files are.

> CCFLAGS_SHARED  = -shared -fPIC
                    ^^^^^^^
do you really want to be using shared?  see Garrett's posts regarding
the -shared flag.

you should also read all the news postings regarding the -R and -L flags,
and how they affect your program.  if you're still having problems,
repost.

-Jason



Index: [thread] [date] [subject] [author]