Re: How to Create Static library or dll file not depending on cygwin's dll

2006-06-22 Thread Igor Peshansky
On Thu, 22 Jun 2006, cxf wrote: > I have a source file "crypto.c",in this file I use the functions which in > openssl library. > So I compile the file with the following command > gcc -c crypto.c > gcc -shared -mno-cygwin -o crypto.dll crypto.o -lcrypto > > But the compiled dll file "crypto.dll" d

How to Create Static library or dll file not depending on cygwin's dll

2006-06-22 Thread cxf
I have a source file "crypto.c",in this file I use the functions which in openssl library. So I compile the file with the following command gcc -c crypto.c gcc -shared -mno-cygwin -o crypto.dll crypto.o -lcrypto But the compiled dll file "crypto.dll" depends on the cygcrypto-0.9.8.dll, can I ha