# Build instructions for Emulator (Unix port) First clone, initialize submodules, install Poetry and enter the Poetry shell as defined [here](index.md). **Do not forget you need to be in a `poetry shell` environment!** ## Dependencies Install the required packages, depending on your operating system. * __Debian/Ubuntu__: ```sh sudo apt-get install scons libsdl2-dev libsdl2-image-dev llvm-dev libclang-dev clang ``` * __Fedora__: ```sh sudo yum install scons SDL2-devel SDL2_image-devel clang-devel ``` * __OpenSUSE__: ```sh sudo zypper install scons libSDL2-devel libSDL2_image-devel ``` * __Arch__: ```sh sudo pacman -S scons sdl2 sdl2_image clang-devel ``` * __NixOS__: There is a `shell.nix` file in the root of the project. Just run the following **before** entering the `core` directory: ```sh nix-shell ``` * __Mac OS X__: _Consider using [Nix](https://nixos.org/download.html). With Nix all you need to do is `nix-shell`._ For other users: ```sh brew install scons sdl2 sdl2_image pkg-config llvm ``` * __Windows__: not supported yet, sorry. ## Rust You will require Rust and Cargo. The currently supported version is 1.55 stable. The recommended way to install both is with [`rustup`](https://rustup.rs/). If you are installing `rustup` for the first time, the stable toolchain will be installed for you automatically. Otherwise, make sure you are up to date: ```sh rustup update ``` The [bindgen crate](https://rust-lang.github.io/rust-bindgen/requirements.html) requires libclang for generating MicroPython FFI. ## Build Run the build with: ```sh make build_unix ``` ## Run Now you can start the emulator: ```sh ./emu.py ``` The emulator has a number of interesting features all documented in the [Emulator](../emulator/index.md) section. ## Building for debugging and hacking in Emulator (Unix port) Build the debuggable unix binary so you can attach the gdb or lldb. This removes optimizations and reduces address space randomization. Beware that this will significantly bloat the final binary and the firmware runtime memory limit HEAPSIZE may have to be increased. ```sh DEBUG_BUILD=1 make build_unix ```