diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-16 09:15:44 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-16 09:15:44 +0100 |
commit | 2118f8e8a39c072a043923a2777ab428ffb9f13a (patch) | |
tree | dbf3d02338d1d179e1b87aa08657b2b25f70fa4a /modules/raycast | |
parent | ce278b1b7ac3ff01e987019e7492c4c1251cb197 (diff) | |
parent | 2841144096e046b57214d4be8b7ef17f0077414d (diff) |
Merge pull request #70684 from filiperinaldi/fix_arm64_build_clang
Fix arm64 build when using Clang
Diffstat (limited to 'modules/raycast')
-rw-r--r-- | modules/raycast/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/raycast/SCsub b/modules/raycast/SCsub index 37c8a95905..209ebab388 100644 --- a/modules/raycast/SCsub +++ b/modules/raycast/SCsub @@ -96,7 +96,7 @@ if env["builtin_embree"]: if not env.msvc: # Flags synced with upstream gnu.cmake. - if env["arch"] == "arm64" and env["platform"] == "linuxbsd": + if env["arch"] == "arm64" and env["platform"] == "linuxbsd" and not env["use_llvm"]: env_thirdparty.Append(CXXFLAGS=["-flax-vector-conversions"]) env_thirdparty.Append( |