I build an application in Borland C++ 6 and I'd like to import external, non Borland library (FFTW, to be exact, http://www.fftw.org). I have downloaded the fftw dll file, used the implib.exe program to build a lib file known to Borland, included fftw.h in source and copied fftw.h to Borland/include, fftw.lib to Borland/lib and .h, .dll and .lib files to my project folder. Unfortunately i get several linker errors, which claims: "Unresolved external '{name of the FFTW function}' referenced from {name of the source file}" What do i do wrong?
|
|
I think you're only missing one step... add the .lib file that implib created to your project. |
||
|
|
|
|
Are you sure that Borland is doing proper name-mangling of the external functions, and that the header has been surrounded with If that doesn't work, why don't you build FFTW from source instead of using a DLL? |
||||
|
