messn036
New Contributor
4 years agoSample project with RTL module library not working
Hello Intel Support,
I am attempting to compile a library of RTL components to use in my HLS project.
The HLS project compiles when testing for x86-64 simulation, but the compiler complains about the desired RTL function being "undefined" when attempting to compile for test-fpga.
I have included the relevant files .v and .xml files, but cannot upload the .cpp or .h file though they are included when I compile the library
I am curious as to which file likely has the issue since I can do simulation but not compilation.
Thank you in advance
The issue is in my expHBU.h file. I put
uint8_t expHBU(uint8_t input);Rather than the CORRECT
extern "C" { uint8_t expHBU(uint8_t input); }This extern is extremely esoteric and should be included in the reference manual.