From e015c9ebe3a9178a36d8d928be7fa4a04ec1c514 Mon Sep 17 00:00:00 2001 From: zdevito Date: Wed, 10 Dec 2025 15:34:06 -0800 Subject: [PATCH] Add libstdc++-static to Fedora build dependencies The libstdc++-static package is required for building Monarch on Fedora systems. Without this package, the build fails during linking. This adds it to the installation instructions for Fedora distributions. Differential Revision: [D88899581](https://our.internmc.facebook.com/intern/diff/D88899581/) **NOTE FOR REVIEWERS**: This PR has internal Meta-specific changes or comments, please review them on [Phabricator](https://our.internmc.facebook.com/intern/diff/D88899581/)! [ghstack-poisoned] --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe143b68c..f438fe13a 100644 --- a/README.md +++ b/README.md @@ -92,8 +92,8 @@ conda install libunwind -y # Install the correct cuda and cuda-toolkit versions for your machine sudo dnf install cuda-toolkit-12-8 cuda-12-8 -# Install clang-dev and nccl-dev -sudo dnf install clang-devel libnccl-devel +# Install clang-devel, nccl-devel, and libstdc++-static +sudo dnf install clang-devel libnccl-devel libstdc++-static # Or, in some environments, the following may be necessary instead conda install -c conda-forge clangdev nccl conda update -n monarchenv --all -c conda-forge -y