Hi,
I am writing a code in C to read random memory contents from flash memory. I am using openssl library to make use of RC-4 cipher as a pseudo random generator. The problem is that when i build my project i get following errors,
undefined first referenced
symbol in file
--------- ----------------
RC4 ./main.obj
RC4_set_key ./main.obj
SHA256 ./main.obj
error #10234-D: unresolved symbols remain
error #10010: errors encountered during linking; "fileread.out" not built
gmake: *** [fileread.out] Error 1
gmake: Target `all' not remade because of errors.
**** Build Finished ****
Once i checked the details of the error#10234-D ,,it says "The linker has encountered a symbol (function or variable) for which it cannot find the definition". whereas in my case the linker does find the header files i.e RC4.h and sha.h,, in which the RC4, RC4_set_key and SHA256 functions are declared.
Kindly tell me ,,how to resolve this error in code composer. The same code works fine in Dev C++..
Thanx a lot.