Selaa lähdekoodia

Linux: Don't try to link system embree3 on unsupported archs

Rémi Verschelde 2 vuotta sitten
vanhempi
commit
afb8693715
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. 1 2
      platform/linuxbsd/detect.py

+ 1 - 2
platform/linuxbsd/detect.py

@@ -277,11 +277,10 @@ def configure(env: "Environment"):
         env.Prepend(CPPPATH=["/usr/include/recastnavigation"])
         env.Append(LIBS=["Recast"])
 
-    if not env["builtin_embree"]:
+    if not env["builtin_embree"] and env["arch"] in ["x86_64", "arm64"]:
         # No pkgconfig file so far, hardcode expected lib name.
         env.Append(LIBS=["embree3"])
 
-    ## Flags
     if env["fontconfig"]:
         if not env["use_sowrap"]:
             if os.system("pkg-config --exists fontconfig") == 0:  # 0 means found