Hi,
I successfully compiled sample projects using 'make' tool with the latest version of CodeSourcery Toolchain. It seems very well organized and easy to understand how to navigate folders.
There are two minor issues (not a bug) that I really hope to be patched in the next version of StarterWare. That should be very straight forward. (I'm just so lazy to modify all those makefiles). I'm not sure if this is the same case for older version (2009q1) of CodeSourcery that TI website provides.
1. Whenever I type 'make' in a folder, say gpio, it compiles all necessary libraries again from scratch. The makefile generates all intermediate files (*.o* files) again and archive them again. I'm not good at 'make' tool. But there should be an option or a way to inhibit this behavior.
2. Let's say I 'make' a file once, successfully. Then, if I run 'make' again, then I always get an error message saying
Release/gpioLEDblink.out: file not recognized: File truncated
Could you fix this behavior so that I don't have to 'make' again?
If there are quick fixes for these behaviors, that would be great.
Thanks a lot.
SG
ps. One more thing. The bootloader can be compiled with the latest version of CodeSourcery, but never really boot-up. I painfully figured out that the booting procedure cannot pass a function, "HSMMCSDImageCopy(void)", because the temporary filename was not correctly produced and therefore the whole system hangs (I'm using beaglebone). Instead of the line "strcat(g_cTmpBuf, "app")", I manually typed in the file name.