Forráskód Böngészése

Merge pull request #67272 from Riteo/fix-auto-execinfo

Actually set the execinfo flag on non-glibc systems
Rémi Verschelde 2 éve
szülő
commit
ced736e584
1 módosított fájl, 1 hozzáadás és 0 törlés
  1. 1 0
      platform/linuxbsd/detect.py

+ 1 - 0
platform/linuxbsd/detect.py

@@ -367,6 +367,7 @@ def configure(env: "Environment"):
         # The default crash handler depends on glibc, so if the host uses
         # a different libc (BSD libc, musl), fall back to libexecinfo.
         print("Note: Using `execinfo=yes` for the crash handler as required on platforms where glibc is missing.")
+        env["execinfo"] = True
 
     if env["execinfo"]:
         env.Append(LIBS=["execinfo"])