I' trying to compile and debug using MSPGCC, MSPDEBUG from the Linux command line, avoiding to use an ide like CCSv5v2.1, just for the fun of it and to find out if it's possible to program a MSP430F5438A on a MSP-EXP430F5438 over MSP-FET430UIF.
I have downloaded and installed the latest DLL Developers Package v3.2.4.5 to obtain MSP430.DLL (for Linux) http://processors.wiki.ti.com/index.php/MSPDS_Open_Source_Package and followed the download instructions.
As root after typing sudo su I did make
root@bo:/home/bo/Downloads/MSP430.DLLv3_OS_Package# make
g++ -c -o DLL430_v3/src/TI/DLL430/MessageData.o DLL430_v3/src/TI/DLL430/MessageData.cpp -fPIC -m32 -Os -I./Bios/include -I./HalObjectDb/include -I./DLL430_v3/include -I./DLL430_v3/include/DLL430 -I./DLL430_v3/src -I./DLL430_v3/src/TI/DLL430 -DUNIX -DNDEBUG
DLL430_v3/src/TI/DLL430/MessageData.cpp: In member function ‘void TI::DLL430::MessageData::read(void*, size_t)’:
DLL430_v3/src/TI/DLL430/MessageData.cpp:99:38: error: ‘memcpy’ was not declared in this scope
DLL430_v3/src/TI/DLL430/MessageData.cpp: In member function ‘void TI::DLL430::MessageData::write(const void*, size_t)’:
DLL430_v3/src/TI/DLL430/MessageData.cpp:113:33: error: ‘memcpy’ was not declared
...and got this error.
Please someone, tell me what to do.
Regards Bo