cppIStough
- 24
- 2
Title says it all, I'm trying to link FFTW and am getting a linker error. Anyone here have experience using this library?
The discussion centers on linking the FFTW library (version 3.3.10) in a C++ project using Visual Studio on Windows. The user encounters a linker error, specifically LNK1181, indicating that the build process cannot find the required 'Release.obj' file. The user has correctly configured the project properties to include the FFTW3.lib file in the Additional Dependencies and set the appropriate directories for VC++ Include and Library Directories. The absence of the .obj file suggests a misconfiguration in the linking process or an incorrect expectation of the file types needed for the build.
PREREQUISITESC++ developers working on Windows who need to integrate the FFTW library, as well as those troubleshooting linker errors in Visual Studio projects.
All except the command you are using and the error message you get.cppIStough said:Title says it all,
hahaha okay, fair enough, i just wanted to know if anyone had used it. Okay, so I'm using windows on visual studio. I configure the solution i'm currently trying to link with to include the path to the FFTW3.lib file: in order to do this I'm clicking properties > Linker > Input and then adding this directory in Additional Dependencies.Vanadium 50 said:All except the command you are using and the error message you get.