Skip to content

Compile and install of Yosys. Yosys is a framework for Verilog RTL synthesis.

License

Notifications You must be signed in to change notification settings

embed-dsp/ed_yosys

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Compile and Install of the Yosys Tool

This repository contains a make file for easy compile and install of Yosys. Yosys is a framework for Verilog RTL synthesis.

This make file can build the Yosys tool on the following systems:

  • Linux
  • Windows

Get Source Code

ed_yosys

git clone https://github.com/embed-dsp/ed_yosys.git

Yosys

# Enter the ed_yosys directory.
cd ed_yosys
# If this is the first time Yosys is built, then clone the Yosys git repository.
make clone
# Otherwise just pull the latest updates from the Yosys git repository.
make pull
# Edit the Makefile for selecting the Yosys version.
vim Makefile
PACKAGE_VERSION = main

Build

# Checkout specific version and rebuild configure.
make prepare
# Configure source code.
make configure
# Compile source code using 8 simultaneous jobs (Default).
make compile

Install

Linux

# Install build products.
sudo make install

The Yosys package does NOT install correctly according to the GNU Coding Standards. The build products are therefore installed in the following locations in order to allow separate installation for different architectures:

/opt/
└── yosys/
    └── linux_x86_64/               # 64-bit binaries and libraries for Linux
        └── yosys-main/
            ├── bin/
            │   ├── yosys
            │       ...
            └── share/              # ...
                ├── yosys/
                    ...

Windows: MSYS2/mingw64

# Install build products.
make install

The Yosys package does NOT install correctly according to the GNU Coding Standards. The build products are therefore installed in the following locations in order to allow separate installation for different architectures:

/c/opt/
└── yosys/
    └── mingw64_x86_64/             # 64-bit binaries and libraries for Windows
        └── yosys-main/
            ├── bin/
            │   ├── yosys
            │       ...
            └── share/              # ...
                ├── yosys/
                    ...

About

Compile and install of Yosys. Yosys is a framework for Verilog RTL synthesis.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published