Reviving this thread, because I'm unable to build the sample project.
I have a FRDM-K64F-AGM01 and KDS 3.0.0 (I'm on Mac, but it doesn't build on Windows either)
I imported the FSFK-K64F project, accepted the prompt to upgrade MQXLite, and selected "Use newlib-nano" in the project properties.
I also imported ksdk_platform_lib_K64F12, because the other demos need it. But I'm completely new to KDS so I might not know what I'm doing.
When I build I get an obscure makefile error:
Static_Code/System/subdir.mk:23: *** target pattern contains no `%'. Stop.
Line 23 is the rule to build CPU_init.o. It has a path that doesn't make sense; it refers to "C:/Freescale/KDS_1.1.1" which does not exist within KDS_3.0.0.app.
# Each subdirectory must supply rules for building sources it contributes
Static_Code/System/CPU_Init.o: /Applications/KDS_3.0.0.app/Contents/eclipse/C:/Freescale/KDS_1.1.1/eclipse/ProcessorExpert/lib/Kinetis/pdd2/MK64FN1M0LL12/system/CPU_Init.c
@echo 'Building file: $<'
@echo 'Invoking: Cross ARM C Compiler'
arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -O3 -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections -Wall -g -DK64F -I"/Applications/KDS_3.0.0.app/Contents/eclipse/ProcessorExpert/lib/Kinetis/pdd/inc" -I"/Applications/KDS_3.0.0.app/Contents/eclipse/ProcessorExpert/lib/Kinetis/iofiles" -I"/code/FreescaleSensorFusion/Sensor Fusion Library/KDS/FSFK_K64F/Sources" -I"/code/FreescaleSensorFusion/Sensor Fusion Library/KDS/FSFK_K64F/Generated_Code" -I"/code/FreescaleSensorFusion/Sensor Fusion Library/KDS/FSFK_K64F/MQXLITE/include" -I"/code/FreescaleSensorFusion/Sensor Fusion Library/KDS/FSFK_K64F/MQXLITE/config" -I"/code/FreescaleSensorFusion/Sensor Fusion Library/KDS/FSFK_K64F/MQXLITE/kernel" -I"/code/FreescaleSensorFusion/Sensor Fusion Library/KDS/FSFK_K64F/MQXLITE/psp/cortex_m" -I"/code/FreescaleSensorFusion/Sensor Fusion Library/KDS/FSFK_K64F/MQXLITE/psp/cortex_m/core/M4" -I"/code/FreescaleSensorFusion/Sensor Fusion Library/KDS/FSFK_K64F/MQXLITE/psp/cortex_m/compiler/cwgcc" -I"/Applications/KDS_3.0.0.app/Contents/eclipse/ProcessorExpert/lib/Kinetis/pdd2/MK64FN1M0LL12/system" -I"/Applications/KDS_3.0.0.app/Contents/eclipse/ProcessorExpert/lib/Kinetis/pdd2/MK64FN1M0LL12/peripherals" -std=c99 -MMD -MP -MF"Static_Code/System/CPU_Init.d" -MT"Static_Code/System/CPU_Init.d" -c -o "$@" "$<"
@echo 'Finished building: $<'
@echo ' '
Thanks!
Sean