Hi Tony,
the reason why ovg examples can't be build is missing post-build step in bsp/psp project. Here is step by step guide for fixing the build issue for Logo/tiger and other examples:
- build bsp/psp for both cores (A5, M4)
- start windows command line
- go to your MQX_4_2_Halo_0_6 install path (for me it is C:\Freescale\MQX_4_2_Halo_0_6)
- go to mxq/build/bat sub folder - in sequence start all 4 bat files with 3 arguments.
arg 1. MQX_ROOT_DIR (in my case C:\Freescale\MQX_4_2_Halo_0_6)
arg 2. OUTPUT_PATH (in my case C:\Freescale\MQX_4_2_Halo_0_6\lib\mac57d5mb_a5.s32ds\debug\bsp
arg 3. s32ds (tool name)
I used for all 4 .bat files output path with bsp at the end - even when the bat file is related to psp. You have to only change core in the output path related to .bat file (a5 or m4).
Here are exact command lines how I used them on my machine:
bsp_mac57d5mb_m4.bat C:\Freescale\MQX_4_2_Halo_0_6 C:\Freescale\MQX_4_2_Halo_0_6\lib\mac57d5mb_m4.s32ds\debug\bsp s32ds
psp_mac57d5mb_m4.bat C:\Freescale\MQX_4_2_Halo_0_6 C:\Freescale\MQX_4_2_Halo_0_6\lib\mac57d5mb_m4.s32ds\debug\bsp s32ds
bsp_mac57d5mb_a5.bat C:\Freescale\MQX_4_2_Halo_0_6 C:\Freescale\MQX_4_2_Halo_0_6\lib\mac57d5mb_a5.s32ds\debug\bsp s32ds
psp_mac57d5mb_a5.bat C:\Freescale\MQX_4_2_Halo_0_6 C:\Freescale\MQX_4_2_Halo_0_6\lib\mac57d5mb_a5.s32ds\debug\bsp s32ds
Hope it helps.
Jiri