From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Snopek To: "Martin v. Loewis" , gcc-help@gcc.gnu.org Subject: Re: Shared Libraries Date: Sat, 08 Jul 2000 16:16:00 -0000 Message-id: <3967B5C2.618B3AA1@execpc.com> References: <39676DEB.985DF973@execpc.com> <200007082157.XAA00895@loewis.home.cs.tu-berlin.de> X-SW-Source: 2000-07/msg00045.html I found the solution to the problem (or at least something that makes it go away) although I do not really understand it. In all of my files I had "#pragma interface" in the header and "#pragma implementation" in the implementation. I had read in the man pages for g++ that if you don't give "#pragma implementation" a header name then it will use the files name except with the *.h extension, so I didn't supply one because all of my files are named in this fashion. In the midst of trying completely random things, I put the header names in. And now it works perfectly. I don;t know why, but for now I do not care. Thanks for trying to help!! - David Snopek