From 19d4ec05af35254ffff8ad5a3088297ea94f2a1b Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 6 Oct 2021 16:38:18 +0100 Subject: [PATCH] arm/gn: don't statically link libstdc++ As we're building whole systems and not binaries that are expected to be copied around, we can dynamically link to libstdc++. Change-Id: I1e54ca519b069388226f40c489c9194b870a6d3c Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- meta-arm/recipes-devtools/gn/gn_git.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-arm/recipes-devtools/gn/gn_git.bb b/meta-arm/recipes-devtools/gn/gn_git.bb index 522a7efe..56002229 100644 --- a/meta-arm/recipes-devtools/gn/gn_git.bb +++ b/meta-arm/recipes-devtools/gn/gn_git.bb @@ -31,6 +31,7 @@ do_configure() { python3 ${S}/build/gen.py \ --platform=${@gn_platform("TARGET_OS", d)} \ --out-path=${B} \ + --no-static-libstdc++ \ --no-strip }