From 211dd66ef62b1f5c5dc4b951e4a15388cc70faa9 Mon Sep 17 00:00:00 2001 From: Levi Koger Date: Thu, 12 Sep 2024 00:40:45 -0500 Subject: [PATCH] Update Ubuntu build instructions --- BUILDING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 4bf3423..237838b 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -20,7 +20,7 @@ For Linux the instructions for Ubuntu are provided, but you can find the equival ```bash # For Ubuntu, simply run: -sudo apt-get install cmake ninja libsdl2-dev libgtk-3-dev lld llvm clang-15 +sudo apt-get install cmake ninja-build libsdl2-dev libgtk-3-dev lld llvm clang-15 ``` ### Windows @@ -65,7 +65,7 @@ On Windows, you can open the repository folder with Visual Studio, and you'll be If you prefer the command line or you're on a Unix platform you can build the project using CMake: ```bash -cmake -S . -B build-cmake -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -G Ninja -DCMAKE_BUILD_TYPE=Release # or Debug if you want to debug +cmake -S . -B build-cmake -DCMAKE_CXX_COMPILER=clang++-15 -DCMAKE_C_COMPILER=clang-15 -DPATCHES_C_COMPILER=clang-15 -G Ninja -DCMAKE_BUILD_TYPE=Release # or Debug if you want to debug cmake --build build-cmake --target Zelda64Recompiled -j$(nproc) --config Release # or Debug ```