Skip to content

Latest commit

 

History

History
79 lines (49 loc) · 1.82 KB

developing_zed__building_zed_windows.md

File metadata and controls

79 lines (49 loc) · 1.82 KB

Building Zed for Windows

Note

The following commands may be executed in any shell.

Repository

After cloning the repository, ensure all git submodules are initialized:

git submodule update --init --recursive

Dependencies

  • Install Rust. If it's already installed, make sure it's up-to-date:

    rustup update
  • Install the Rust wasm toolchain:

    rustup target add wasm32-wasi
  • Install Visual Studio with optional component MSVC v*** - VS YYYY C++ x64/x86 build tools.

Note

v*** is your VS version and YYYY is year when your VS was released.

Backend dependencies

Warning

This section is still in development. The instructions are not yet complete.

If you are developing collaborative features of Zed, you'll need to install the dependencies of zed's collab server:

Alternatively, if you have Docker installed you can bring up all the collab dependencies using Docker Compose:

docker compose up -d

Building from source

Once you have the dependencies installed, you can build Zed using Cargo.

For a debug build:

cargo run

For a release build:

cargo run --release

And to run the tests:

cargo test --workspace

Troubleshooting

Can't compile zed

Before reporting the issue, make sure that you have the latest rustc version with rustup update.

Cargo errors claiming that a dependency is using unstable features

Try cargo clean and cargo build.