stashListing Installed Files in AOSP with make dump-files2026-04-23How to use make dump-files in AOSP to list all files that will be installed into the product output directory.aospRead More
stashVisualizing AOSP Product Dependency Graph2026-04-23How to generate and visualize the AOSP product dependency graph using m product-graph and the dot command.aospRead More
gccgcc attribute: format, format_arg2026-04-08The format attribute specifies that a function takes printf, scanf, strftime or strfmon style arguments which should be type-checked against a format string.attributeRead More
gccgcc builtin: choose_expr2026-04-07You can use the built-in function __builtin_choose_expr to evaluate code depending on the value of a constant expression. This built-in function returns exp1 if const_exp, which is an integer constant expression, is nonzero. Otherwise it returns exp2.gcc_builtinRead More