This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Error: Library not found: ti.drv.fftc.ae66

Hi

When I'm trying to build the fft sample project I'm getting this error message.

js: "D:/Program Files/Texas Instruments/pdk_c6616_1_0_0_11/packages/ti/drv/fftc/package.xs", line 35: Error: Library not found: ti.drv.fftc.ae66

butI have this file located at "D:\Program Files\Texas Instruments\pdk_c6616_1_0_0_11\components\fftc_c6616_1_0_0_12\ti\drv\fftc\lib"

what could be the problem!

(I've selected C66xx Device)

Regards

 

 

  • Faraday,
    is there a call to findSuffix somewhere in package.xs? The function findSuffix checks if a package was built for a specific target, but it does not check the file systems, it checks some internal package files to find out what was built. The most common cause of such a problem is that a package was built for one target (C66 for example), and that build left a library in the file system that you can still see. Then, the package was rebuilt for another target, and that changed the internal files, which caused findSuffix() to find only the library for that other target, but not the one for C66.

    If that's what happened, the solution is to rebuild the package for C66. You can also rebuild the package for all needed targets, but I would need more details about the command line you are using to build the package.

  • Hi

    Thanks for replay.

    but I had solved the problem by copying that library file from

    "..\Texas Instruments\pdk_c6616_1_0_0_11\components\fftc_c6616_1_0_0_12\ti\drv\fftc\lib" to "..Texas Instruments\pdk_c6616_1_0_0_11\packages\ti\drv\fftc\lib"

     

    Regards

    Ashok