summaryrefslogtreecommitdiffstats
path: root/platform/linuxbsd/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-08 09:54:24 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-08 09:54:24 +0200
commit17a81260cb92a321a0d752e369ef911055178c7b (patch)
tree560fecf8101295846847ad31799345c20f0226c2 /platform/linuxbsd/detect.py
parent4c30718102f2487b31a6202e18cec08efc44f117 (diff)
parent7699d678c417945dda228c468731a1e3369dd88a (diff)
downloadredot-engine-17a81260cb92a321a0d752e369ef911055178c7b.tar.gz
Merge pull request #91684 from Chubercik/embree4_aftermath
Fix `builtin_embree=no` build linking the wrong version of Embree
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r--platform/linuxbsd/detect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py
index afc9d25a80..a8b8d2934a 100644
--- a/platform/linuxbsd/detect.py
+++ b/platform/linuxbsd/detect.py
@@ -309,7 +309,7 @@ def configure(env: "SConsEnvironment"):
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"])
+ env.Append(LIBS=["embree4"])
if not env["builtin_openxr"]:
env.ParseConfig("pkg-config openxr --cflags --libs")