|
From: Earnie B. <ear...@ya...> - 2003-07-31 18:13:28
|
Sam Steingold wrote: > First of all, many thanks to everyone who answered my questions so patiently! > > I have a library <http://norsys.com/netica_c_api.htm> which includes a > .lib, .dll and .h files (no sources) and I am trying to use it with > mingw. > > it compiles fine but gives many many link errors like > > $ gcc -mno-cygwin Demo.c -lnetica -L. What happens if you gcc -mno-cygwin Demo.c -L. -lnetica OR gcc -mno-cygwin Demo.c netica.dll Earnie |