Re: help with C API in C++ static library

2010-01-15 Thread Harring Figueiredo
Was the C API code explicilty marked as C so that the compiler does not mangle the fucntion names? Check to make sure this is not happening. Hope this helps, Harring On Fri, Jan 15, 2010 at 1:10 PM, Jason Kraftcheck wrote: > I am trying to build a static library that is implemented in C++ and

Re: DLL howto

2008-11-24 Thread Harring Figueiredo
I hope this page helps you. http://msdn.microsoft.com/en-us/library/9h658af8(VS.80).aspx Regards, Harring. On Sat, Nov 22, 2008 at 8:41 AM, Matěj Týč <[EMAIL PROTECTED]> wrote: > Hi all, > I am seeking a howto regarding making DLLs for Windows. I have found > some information about DLLs here > h

libtool: link: cannot find the library `'

2004-12-16 Thread Harring Figueiredo
Folks: I am getting this error: libtool: link: cannot find the library `' I have searched the archives and could not find any messages related to that - The single ont that mentioned that was was a unified diff, which I applied and did not solve the problem. It seems to be related to the -p

Re: libtool: link: cannot find the library `'

2004-12-16 Thread Harring Figueiredo
> -pthread is an argument to the compiler, not the linker. Do you mean > -lpthread? Yes.. that is correct. I know for sure that if I remove the -L/usr/lib , things fall apart. I will try to remove the linkage to the pthread and see what happens. Thanks for pointing that out. Harring.

Re: libtool: link: cannot find the library `'

2004-12-16 Thread Harring Figueiredo
Found the problem -- I had to manually add the -L/usr/lib. Appremtly it does not know where to find -pthread xftptest_LDADD = @GNET_LIBS@ @GTK_LIBS@ -L/usr/lib -pthread On Thu, 16 Dec 2004 13:34:15 -0500, Harring Figueiredo <[EMAIL PROTECTED]> wrote: > Folks: > > I am get