From b1ed9ffca7879679e5d66f4c709bdbb3fb594020 Mon Sep 17 00:00:00 2001 From: kojurohan42 Date: Fri, 12 Sep 2025 23:31:16 +0545 Subject: [PATCH] added build id link flag for firebase crashlytics support --- platform/android/detect.py | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/android/detect.py b/platform/android/detect.py index 7a91b761fec..d23bfeb80b7 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -228,6 +228,7 @@ def configure(env: "SConsEnvironment"): # Link flags env.Append(LINKFLAGS=["-Wl,--gc-sections", "-Wl,--no-undefined", "-Wl,-z,now"]) + env.Append(LINKFLAGS=["-Wl,--build-id"]) env.Append(LINKFLAGS=["-Wl,-soname,libgodot_android.so"]) env.Prepend(CPPPATH=["#platform/android"])