ADS 工程
安装ARM ArmRealView1_2,破解版
集成环境CodeWarrior for ARM Developer
对于EXE可执行程序,所用到的所有库都必须是ads环境编译的库。创建工程时与VC环境下原理类似。选择ARM C Compiler和ARM C++ Compiler时,一般选择ARM926EJ-S。
ADS下的C编译器语法要求往往比较严格,特别是对指针的隐式转换,ADS往往不支持。因此,在函数调用时,函数的参数类型尽量保持一致。比较典型的比如:
unsigned char str1[256];
strcmp(str1, (unsigned char *)"teststring"); 或者strcmp((char)str1," test string ");
否则,出现“C3028E:: implicit cast of pointer to non-equal pointer”错误。
获取profiler,
armprof -sort self 1.prf>1.txt