From d9a6dc517d95e2890a05d0bad1bcd03632a2e955 Mon Sep 17 00:00:00 2001 From: Steveice10 <1269164+Steveice10@users.noreply.github.com> Date: Tue, 19 Dec 2023 03:04:35 -0800 Subject: [PATCH] Fix formatting mistake --- Building-for-Linux.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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): ```