Merge pull request #18 from LNIS-Projects/egiacomin-patch-4
Egiacomin patch 4
This commit is contained in:
commit
a16dae6d8c
|
@ -1,8 +1,8 @@
|
|||
# How to build?
|
||||
|
||||
## Dependancies
|
||||
## Dependencies
|
||||
|
||||
OpenFPGA requires all the dependancies listed below:
|
||||
OpenFPGA requires all the following dependencies:
|
||||
- autoconf
|
||||
- automake
|
||||
- bash
|
||||
|
@ -40,18 +40,18 @@ OpenFPGA requires all the dependancies listed below:
|
|||
|
||||
## Docker
|
||||
|
||||
If all these dependancies are not installed in your machine you can choose to use a Docker (docker tool need to be installed). To ease customer first experience a Dockerfile is provided in OpenFPGA folder. A container ready to use can be created with the following command:
|
||||
If all these dependancies are not installed on your machine, you can choose to use a Docker (the Docker tool needs to be installed). To ease customer first experience, a Dockerfile is provided in the OpenFPGA folder. A container ready to use can be created with the following command:
|
||||
- docker run lnis/open_fpga:release <br />
|
||||
*Warning: This command is for quick testing. If you want to conserve your work you should certainly use other options as "-v".*
|
||||
|
||||
Or a container where you can build OpenFPGA yourself can be created with the following commands:
|
||||
Otherwise, a container where you can build OpenFPGA yourself can be created with the following commands:
|
||||
- docker build . -t open_fpga
|
||||
- docker run -it --rm -v $PWD:/localfile/OpenFPGA -w="/localfile/OpenFPGA" open_fpga bash<br />
|
||||
[*docker download link*](https://www.docker.com/products/docker-desktop)
|
||||
|
||||
## Building
|
||||
|
||||
To build the tool you have to be in OpenFPGA folder and do:
|
||||
To build the tool you have to go in OpenFPGA folder and do:
|
||||
- mkdir build && cd build
|
||||
- cmake .. -DCMAKE_BUILD_TYPE=debug
|
||||
- make (*WARNING using docker you cannot use "make -j", errors will happen*)
|
||||
|
|
|
@ -1,26 +1,20 @@
|
|||
# Tutorial introduction
|
||||
|
||||
OpenFPGA an IP Verilog Generator allowing reliable and fast testing of homogeneous architectures.<br />
|
||||
Its main goal is to easily and efficiently generated a complete customizable FPGA. It uses a semi-custom design technic.<br /><br />
|
||||
These tutorials are organized as follow:
|
||||
* [Building the tool and his dependancies](https://github.com/LNIS-Projects/OpenFPGA/blob/master/tutorials/building.md)
|
||||
# Tutorial Introduction
|
||||
OpenFPGA is an IP Verilog Generator allowing reliable and fast testing of homogeneous FPGA architectures.<br />
|
||||
Its main goal is to easily and efficiently generated a complete customizable FPGA and uses a semi-custom design flow.<br /><br />
|
||||
In order to help you get in touch with the software, we provide few tutorials which are organized as follow:
|
||||
* [Building the tool and his dependencies](https://github.com/LNIS-Projects/OpenFPGA/blob/master/tutorials/building.md)
|
||||
* [Launching the flow and understand how it works](https://github.com/LNIS-Projects/OpenFPGA/blob/master/tutorials/fpga_flow/how2use.md)
|
||||
* Architecture modification
|
||||
|
||||
## Folder organization
|
||||
|
||||
## Folder Organization
|
||||
OpenFPGA repository is organized as follow:
|
||||
* **abc**: open source synthesys tool
|
||||
* **ace2**: abc extension generating .act files
|
||||
* **ace2**: abc extension generating activity files (.act)
|
||||
* **vpr7_x2p**: sources of modified vpr
|
||||
* **yosys**: opensource synthesys tool
|
||||
* **fpga_flow**: scripts and dependencies to run the complete flow
|
||||
|
||||
## Tips and informations
|
||||
|
||||
Some keywords will be used during this tutorial:
|
||||
## Tips and Information
|
||||
Some keywords will be used during in the tutorials:
|
||||
* OPENFPGAPATHKEYWORD: refers to OpenFPGA folder full path
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue