sdk profile: Disable FEATURES="splitdebug"

We don't include -g in the SDK CFLAGS, so don't waste time and space on
splitdebug. Other compilers like Rust still generate debug symbols, but
we don't need these either.

Signed-off-by: James Le Cuirot <jlecuirot@microsoft.com>
This commit is contained in:
James Le Cuirot 2026-04-09 10:52:44 +01:00
parent d9391b9e34
commit 17e7ec0a07
No known key found for this signature in database
GPG Key ID: 1226415D00DD3137

View File

@ -2,6 +2,11 @@ FLATCAR_TYPE=sdk
USE="cros_host expat man -pam"
# We don't include -g in the SDK CFLAGS, so don't waste time and space on
# splitdebug. Other compilers like Rust still generate debug symbols, but we
# don't need these either.
FEATURES="-splitdebug"
# Enable CPU architectures needed by Rust builds
LLVM_TARGETS="X86 AArch64"