autofix-gn-scope
Fixes scope and variable errors in BUILD.gn files.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Fixes scope and variable errors in BUILD.gn files.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Comprehensive build error repair tool for C++, Rust, and Java projects using Soong, GN, Make, or CMake. Automatically fixes 30+ types of errors including headers, linking, APIs, and config.
Fixes function call errors with wrong number or type of arguments.
Fixes type mismatch errors by adding appropriate casts or conversions.
Fixes syntax errors in Android.bp files.
Removes unsupported or unknown compiler flags from build configurations.
Fixes script permission errors by making files executable.
| name | autofix-gn-scope |
| description | Fixes scope and variable errors in BUILD.gn files. |
Fixes GN build file errors related to undefined variables or scope issues.
Undefined identifierAssignment had no effectCan't load buildconfigUnknown variableFrom: Undefined identifier: my_sources
Variable: my_sources
Undefined variable - add declaration:
# Before
sources = my_sources # ERROR: undefined
# After
my_sources = [ "main.cpp" ]
sources = my_sources
Using variable before definition:
# Before (error)
executable("app") {
sources = common_sources # ERROR
}
common_sources = [ "util.cpp" ]
# After (move declaration up)
common_sources = [ "util.cpp" ]
executable("app") {
sources = common_sources
}
Scope issue with inner blocks:
# Variables defined in if blocks may not be visible outside
if (is_debug) {
debug_flags = [ "-g" ]
}
# debug_flags might be undefined here if is_debug is false
defined() to check optional variablesimport("path")