diff --git a/Building-for-Linux.md b/Building-for-Linux.md index 2fffe65..4f94238 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -136,11 +136,10 @@ cmake .. -DCMAKE_CXX_COMPILER=clang++-5.0 \ -DCMAKE_CXX_FLAGS="-O2 -g -stdlib=libc++" cmake --build . -- -j"$(nproc)" sudo make install (optional) +``` If you get a weird compile error related to `std::span` conversions, make sure you are using clang and libc++ 15 or up. This is an issue with libc++ 14. -``` - ### Building Citra in Release Mode (Optimized): ```