Code Generation <br /> Select ARM-Mode or Thumb-Mode for the application. <br /> Use Cross-Module Optimization enables the linker feedback file that allows further code optimizations. <br />Select usage for the Floating Point Co-processor on devices that have a Vector Floating Point (VFP) co-processor: <br />not used: <br />code generated does not use any VFP instructions (Compiler switch: none, Assembler switch: none) <br />library calls: <br />compiler generates library calls that use VFP instructions (generates typically the smallest code and should be used when Thumb mode is selected) (Compiler switch: --fpu=softvfp+vfpv2, Assembler switch: --fpu=vfpv2) <br />in-line (strict ANSI): <br />compiler mostly uses the VFP unit with in-line code (generates fast code that conforms to the ANSI standard). (Compiler switch: --fpu=vfpu2, Assembler switch: --fpu=vfpv2) <br />in-line (fast):<br /> compiler uses for all VFP instructions in-line code (error checking does not always conform to the ANSI standard). (Compiler switch: --fpu=vfpv2 --fpmode=fast, Assembler switch: --fpu=vfpv2) <br /><br />Use MicroLIB <br />to change the C run-time library set for smallest code application code. MicroLIB is not fully ANSI compatible but sufficient for most small embedded applications.<br />可以查看一下帮助文件中的说明
|