WINCE编译过程大概分为四个步骤

WinCE的编译过程大概分为四个步骤,如下:

* STEP 1 BUILD(Compile Phase): Turns C code into libraries.  Microsoft does this stage and gives pre-built libraries to customers in Platform Builder.  The       remaining stages you perform yourself (whether or not you realize it :)).
* STEP 2 SYSGEN(Sysgen Phase): Turns libraries into DLL's, based on which libraries are required for componentization.
* STEP 3 BUILDREL(The Release Copy Phase): Copy all the DLL's from stage 2 into a central location.
* STEP 4: MAKEIMG(The Make Run-Time Image Phase): Munge all the DLL's, registry settings, etc... into a ROM image.

原文地址:https://www.cnblogs.com/xfdarm/p/1721044.html