소스 검색

Merge pull request #110463 from kojurohan42/build-id-append-for-crashlytics

added build id link flag for firebase crashlytics support for android
Clay John 3 일 전
부모
커밋
bfa330dd5d
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      platform/android/detect.py

+ 1 - 0
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"])