ACE笔记

ace for wince compile:
----------------------
 
1. Get ACE:
-----------


ACE src: http://download.dre.vanderbilt.edu/previous_versions/ACE-6.0.1.zip


2. Create project file for wince:
---------------------------------


    . 解压 ACE-6.0.1.zip 到指定目录 xxxx. 
    
    . cd xxxx/ace
    
    . perl ../MPC/mpc.pl -type em3
    
    . find ace.vcp, use vs2005 open it, than generate vcproj file
    
3. create config.h file
    
    ...
    #define ACE_LACKS_FILELOCKS 1
    #define ACE_MT_SAFE 1
    #define ACE_NDEBUG 1
    #define ACE_NO_INLINE 1
    #include "ace/config-win32.h"
    ...


4. compile...    
 
 
ace use in wince project:
-------------------------
 
    . 建立for ppc2003的工程即可.
 
    . 注释掉search.h中的qsort声明.
 
    . debug工程要用静态链接mfc和crt,否则无法执行.
 
    . release工程无所谓.
 
    . debug/release均链接到ace.lib即可.
    
    
note:
-----
   
    . 6.0.5生成ce的.vcp文件不正确,可以用6.0.1生成vcp后放入6.0.5的目录中使用.

你可能感兴趣的:(File,perl,mfc,WinCE)