Skip to content

Commit c65822d

Browse files
committed
Update SIMD section;
1 parent cad6c12 commit c65822d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

guides/Compiling.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ Other systems and hardware may work, but are not frequently tested.
1818

1919
### Physics SIMD
2020

21-
When building for x86, the physics module requires a CPU with AVX/AVX2 support. To work around
22-
this, disable the physics module by compiling with `-DLOVR_ENABLE_PHYSICS=OFF`, or compile with the
23-
`-DUSE_AVX=OFF` and `-DUSE_AVX2=OFF` flags to remove AVX instructions and use SSE4.2 instead.
24-
Similarly, to support CPUs without SSE4.2 or SSE4.1, use `-DUSE_SSE4_2=OFF` and/or
25-
`-DUSE_SSE4_1=OFF`.
21+
When building for x86, the physics module requires a CPU with AVX/AVX2 support. To run LÖVR on
22+
older CPUs that don't support AVX, either disable the physics module by compiling with
23+
`-DLOVR_ENABLE_PHYSICS=OFF`, or compile with the `-DUSE_AVX=OFF` and `-DUSE_AVX2=OFF` flags to
24+
remove AVX instructions. This will use SSE4.1/SSE4.2 instead, which can similarly be disabled with
25+
the `-DUSE_SSE4_2=OFF` and/or `-DUSE_SSE4_1=OFF` flags to run on even older CPUs.
2626

2727
Dependencies
2828
---

0 commit comments

Comments
 (0)