Set up Cursor Cloud dev environment for 3FS#1
Draft
rchalamala wants to merge 1 commit into
Draft
Conversation
Co-authored-by: Rahul Chalamala <rchalamala@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Sets up and documents the development environment for 3FS (Fire-Flyer File System) on the Cursor Cloud VM (Ubuntu 24.04, x86_64), and adds an
AGENTS.mdwith durable, non-obvious setup/run guidance for future agents.No product code was modified. The only file added is
AGENTS.md.What was installed / configured
clang-14+lld-14(from noble/universe),gcc-12/g++-12, CMake, Boost, glog/gflags/gtest, libuv, lz4, double-conversion, libunwind, gperftools, OpenSSL.7.3.63;libfuse 3.16.2built from source;gettext-base+iproute2(needed by the local harness).1.85.0(newer stable defaults torust-lldand breaks C++ linking).patches/apply.shapplied.cc/c++alternatives to gcc (matching CI) and pinnedclang-14to thegcc-12libstdc++ (the VM's newest gcc-14 dir is incomplete). Exact build command is documented inAGENTS.md.Verification (build / lint / test)
cargo build --releasecmake --build build -j8 -- -k(clang-14, gcc-12 pin)make check-format(clang-format-14)./build/tests/test_kv./build/tests/test_mgmtd./build/tests/test_meta./build/tests/test_clientKnown limitations (documented in AGENTS.md)
/sys/class/infiniband,ibv_get_device_list= ENOSYS). All service/client binaries FATAL atIBManager::start, so the full cluster + FUSE harness (tests/fuse/run.sh) cannot run here. Functional verification is done via the TCP/LOCAL gtest suites above.tests/common/utils/TestShuffle.cchas a latent missing#include <fstream>and fails to compile under clang-14 (both libstdc++-12 and -13); build the rest with-- -k.Build and test evidence
To show artifacts inline, enable in settings.