Installing the ZKsync Solidity Compiler Toolchain
To compile contracts for ZKsync, you need the ZKsync Solidity compiler toolchain. It consists of two components:
- The main component: zksolc.
- The additional component: solc, which produces Solidity artifacts used by zksolc.
We are using our fork of the upstream solc compiler. The fork is necessary to support several ZKsync-specific features and workarounds.
System Requirements
It is recommended to have at least 4 GB of RAM to compile large projects. The compilation process is parallelized by default, so the number of threads used is equal to the number of CPU cores.
Large projects can consume a lot of RAM during compilation on machines with a high number of cores. If you encounter memory issues, consider reducing the number of threads using the
--threads
option.
The table below outlines the supported platforms and architectures:
CPU/OS | MacOS | Linux | Windows |
---|---|---|---|
x86_64 | ✅ | ✅ | ✅ |
arm64 | ✅ | ✅ | ❌ |
Please avoid using outdated distributions of operating systems, as they may lack the necessary dependencies or include outdated versions of them. zksolc is only tested on recent versions of popular distributions, such as MacOS 11.0 and Windows 10.
Starting from zksolc v1.5.3, we are shipping builds statically linked with the GNU C library.
Installing zksolc
You can install the ZKsync Solidity compiler toolchain using the following methods:
- Use Foundry, Hardhat, or other popular toolkits, so they will manage the compiler installation and their dependencies for you. See Ethereum Development Toolkits.
- Download pre-built binaries of solc and zksolc. See Static Executables.
- Build zksolc from sources. See Building from Source.
For small projects, learning and research purposes, zksolc and solc executables without a toolkit are sufficient.
Installing solc
Running zksolc requires the fork of the Solidity compiler solc where we fixed several issues with lowering of EVM assembly to LLVM IR. The fork is called by zksolc as a child process. To point zksolc to the location of solc, use one of the following methods:
-
Add the location of solc to the environment variable
PATH
.For example, if you have downloaded solc to the directory
/home/username/opt
, you can execute the following command, or append it to the configuration file of your shell:export PATH="/home/username/opt:${PATH}"
-
Alternatively, when you run zksolc, provide the full path to solc using the
--solc
option.For example, if
solc
is located in your current working directory, you can point to it with this command:zksolc --solc './solc' --bin 'Greeter.sol'
The second option is more convenient if you are using different versions of solc for different projects. The current version of zksolc supports solc versions from 0.4.12 to 0.8.28.
Versioning
The zksolc versioning scheme does not yet follow the Semantic Versioning specification. Instead, its major and minor versions match those of the EraVM protocol for which zksolc produces bytecode. The patch version is incremented with each release, regardless of whether breaking changes are introduced. Therefore, please consult the changelog before updating the compiler.
Versions of our solc fork consist of two semver-compatible parts:
- Original upstream version
- ZKsync revision
For instance, the latest revision of the latest version of solc is 0.8.28-1.0.1
. Here are the ZKsync revisions released by now:
Revision | Features |
---|---|
v1.0.0 | Fixed compatibility between EVM assembly and LLVM IR |
v1.0.1 | Fixed a compiler crash with nested try-catch patterns |
We recommend always using the latest version of zksolc and solc to benefit from the latest features and bug fixes. Starting from zksolc v1.5.8, it is not possible to use the original solc with zksolc anymore.
Ethereum Development Toolkits
For large codebases, it is more convenient to use the ZKsync compiler toolchain via toolkits like Foundry and Hardhat. These tools manage the compiler executables and their dependencies, and provide additional features like incremental compilation and caching.
The ZKsync toolchain is supported by the following toolkits:
Static Executables
We ship zksolc binaries on the releases page of matter-labs/era-compiler-solidity
repository.
This repository maintains intuitive and stable naming for the executables and provides a changelog for each release. Tools using zksolc will download the binaries from this repository and cache them locally.
You can download older versions from the main branch or the releases page of the deprecated repository for zksolc executables.
If any of your projects are still using the old locations, please change their download URLs to the new one.
All binaries are statically linked and must work on all recent platforms without issues. zksolc is fully written in Rust, aiming to minimize incompatibilities with the environment.
Building from Source
Please consider using the pre-built executables before building from source. Building from source is only necessary for development, research, and debugging purposes. Deployment and production use cases should rely only on the officially released executables.
-
Install the necessary system-wide dependencies.
- For Linux (Debian):
apt install cmake ninja-build curl git libssl-dev pkg-config clang lld
- For Linux (Arch):
pacman -Syu which cmake ninja curl git pkg-config clang lld
-
For MacOS:
-
Install the Homebrew package manager by following the instructions at brew.sh.
-
Install the necessary system-wide dependencies:
brew install cmake ninja coreutils
-
Install a recent build of the LLVM/Clang compiler using one of the following tools:
- Xcode
- Apple’s Command Line Tools
- Your preferred package manager.
-
-
Install Rust.
The easiest way to do it is following the latest official instructions.
The Rust version used for building is pinned in the rust-toolchain.toml file at the repository root. cargo will automatically download the pinned version of rustc when you start building the project.
-
Clone and checkout this repository.
git clone https://github.com/matter-labs/era-compiler-solidity
-
Install the ZKsync LLVM framework builder. This tool clones the repository of ZKsync LLVM Framework and runs a sequence of build commands tuned for the needs of ZKsync compiler toolchain.
cargo install compiler-llvm-builder
To fine-tune your build of ZKsync LLVM framework, refer to the section Fine tuning ZKsync LLVM build
Always use the latest version of the builder to benefit from the latest features and bug fixes. To check for new versions and update the builder, simply run
cargo install compiler-llvm-builder
again, even if you have already installed the builder. The builder is not the ZKsync LLVM framework itself, but a tool to build it. By default, it is installed in~/.cargo/bin/
, which is usually added to yourPATH
during the Rust installation process.
-
Clone and build the ZKsync LLVM framework using the
zksync-llvm
tool.# Navigate to the root of your local copy of this repository. cd era-compiler-solidity # Clone the ZKsync LLVM framework. The branch is specified in the file `LLVM.lock`. zksync-llvm clone # Build the ZKsync LLVM framework. zksync-llvm build
For more information and available build options, run
zksync-llvm build --help
.You can also clone and build LLVM framework outside of the repository root. In this case, do the following:
-
Provide an
LLVM.lock
file in the directory where you runzksync-llvm
. See the default LLVM.lock for an example. -
Ensure that
LLVM.lock
selects the correct branch of the ZKsync LLVM Framework repository. -
Before proceeding to the next step, set the environment variable
LLVM_SYS_170_PREFIX
to the path of the directory with the LLVM build artifacts. Typically, it ends withtarget-llvm/build-final
, which is the default LLVM target directory of the LLVM builder. For example:export LLVM_SYS_170_PREFIX=~/repositories/era-compiler-solidity/target-llvm/build-final
-
-
Build the zksolc executable.
cargo build --release
The zksolc executable will appear at
./target/release/zksolc
, where you can run it directly or move it to another location.If cargo cannot find the LLVM build artifacts, return to the previous step and ensure that the
LLVM_SYS_170_PREFIX
environment variable is set to the absolute path of the directorytarget-llvm/build-final
.
Tuning the ZKsync LLVM build
-
For more information and available build options, run
zksync-llvm build --help
. -
Use the
--use-ccache
option to speed up the build process if you have ccache installed. -
To build ZKsync LLVM framework using specific C and C++ compilers, pass additional arguments to CMake using the
--extra-args
option:# Pay special attention to character escaping. zksync-llvm build \ --use-ccache \ --extra-args \ '\-DCMAKE_C_COMPILER=/opt/homebrew/Cellar/llvm@18/18.1.8/bin/clang' \ '\-DCMAKE_BUILD_TYPE=Release' \ '\-DCMAKE_CXX_COMPILER=/opt/homebrew/Cellar/llvm@18/18.1.8/bin/clang++'
Building LLVM manually
-
If you prefer building your ZKsync LLVM manually, include the following flags in your CMake command:
# We recommended using the latest version of CMake. -DLLVM_TARGETS_TO_BUILD='EraVM;EVM' -DLLVM_ENABLE_PROJECTS='lld' -DBUILD_SHARED_LIBS='Off'
For most users, the ZKsync LLVM builder is the recommended way to build the ZKsync LLVM framework. This section exists for the ZKsync toolchain developers and researchers with specific requirements and experience with the LLVM framework. We are going to present a more detailed guide for LLVM contributors in the future.