compile-analysis
Installation
SKILL.md
Compilation Efficiency Analysis Skill
Analyze compilation efficiency for individual source files in the ACE Engine project. This skill provides detailed insights into compilation time, resource overhead, and header file dependencies to help identify optimization opportunities.
Overview
Compilation analysis helps identify performance bottlenecks in the build process by measuring:
- Compilation time - How long a file takes to compile
- Resource overhead - Peak memory usage during compilation
- Header dependencies - Tree structure of included headers
Critical Requirements:
- ⚠️ The analyze_compile.sh script can be executed from the current project directory
- ⚠️ Extracted compilation commands MUST be executed in the
out/{product}directory (not from the project root) - ⚠️ All analysis results MUST be based on actual execution - no speculation or estimation
- ⚠️ Header dependencies MUST be parsed using the built-in
parse_ii.pyscript to analyze.iifiles - do not use alternative methods