AlexBeasley
Occasional Contributor
3 years agoLinking fftw3 lib into SystemVerilog Simulation with DPI-C
Hi there,
I am trying to run a simulation that makes use of the DPI-C interface so I can compare the FPGA output with the same function being performed in C.
For this I need to compile in the...
- 3 years ago
Hi there,
I worked it out; because the .lib files were in a directory that was not being searched automatically I had to add -L<lib_directory> into the -ldflags command. i.e.:
vsim -c -ldflags "-L./ -llibfftw3-3 -llibfftw3f-3 -llibfftw3l-3" -64 work.fftw3_tbThis now works.
Cheers
Alex