| T O P I C R E V I E W |
| joerg_s |
Posted - 11/04/2004 : 05:24:10 AM Origin Version (Select Help-->About Origin): Origin 7.5 SR4 Operating System: Windows NT 4.0
Hi, I have the following problem using the OriginC function fft_convolute:
as described in the manual I cast "int iRet = fft_convolute(pop, shb, result);" => "Error, function or variable fft_convolute not found"
Also explicitly including the right path of fft_utils.h in the header does not help, then I get:
":Error, Function fft_convolute@HAKA$KA$KA$BABA was called, but its body could not be located during linking. Linking Failed!"
Does anyone know the solution?
Thanks a lot.
Jörg
|
| 1 L A T E S T R E P L I E S (Newest First) |
| easwar |
Posted - 11/04/2004 : 10:05:07 AM Hi Joerg,
When you get a message such as "HAKA....was called, but its body could not be located during linking" it means that the prototype is understood, but the function itself is missing.
In such cases, it just means that the associated C file/function is not available to the compiler/linker. So in your case, you just need to add the corresponding C file, fft_utils.c, to your workspace. This file is not present in the workspace by default, and so needs to be added. You could add it to your System branch in Code Builder, in which case, it will then be available/present in all future Origin sessions.
Easwar OriginLab
Edited by - easwar on 11/04/2004 10:06:52 AM |
|
|