Hi Nguyen Hung.
Can you check in your project "Properties->ARM Linker->Input" the next thinks:
1) Linker command file is intended for your MCU: ..../MK60DN512Z_flash.lcf is intended for K60 (512K ROM/512K RAM) MCU, etc.
2) In "Entry Point" field you have any label name: __thumb_startup (for example). This is a ivINT_Initial_Program_Counter are placed in your vectortable in the address 0x01. Check that this label the same as in the vectortable (in kinetis_sysinit.c file).
3) If you work with RAM "flashing" (check that in the "Run/Debug target" is RAM or Flash) and you haven't enought RAM memory your program will not run.
4) If you try to print by "printf" any debug/Log information in the Console window, your program will crash every time in the first occurence of this operation: close all "printf".
Have a good day.
Evgeni