Update docker part in building.md

This commit is contained in:
AurelienUoU 2019-07-11 10:13:55 -06:00
parent c556b85d66
commit 346b6f3e8e
2 changed files with 5 additions and 4 deletions

View File

@ -13,9 +13,10 @@ The different ways of compiling can be found in the **./compilation** folder.<br
Dependancies and help using docker can be found at [**./tutorials/building.md**](https://github.com/LNIS-Projects/OpenFPGA/blob/documentation/tutorials/building.md). Dependancies and help using docker can be found at [**./tutorials/building.md**](https://github.com/LNIS-Projects/OpenFPGA/blob/documentation/tutorials/building.md).
**Compilation steps:** **Compilation steps:**
1. Create a folder named build in OpenPFGA repository (mkdir build && cd build) 1. Clone the repository (git clone https://github.com/LNIS-Projects/OpenFPGA.git && cd OpenFPGA)
2. Create Makefile in this folder using cmake (cmake .. -DCMAKE_BUILD_TYPE=debug) 2. Create a folder named build in OpenPFGA repository (mkdir build && cd build)
3. Compile the tool and its dependencies (make) 3. Create Makefile in this folder using cmake (cmake .. -DCMAKE_BUILD_TYPE=debug)
4. Compile the tool and its dependencies (make)
*We currently implemented OpenFPGA for:* *We currently implemented OpenFPGA for:*

View File

@ -50,4 +50,4 @@ If all these dependancies are not installed in your machine you can choose to us
To build the tool you have to be in OpenFPGA folder and do: To build the tool you have to be in OpenFPGA folder and do:
- mkdir build && cd build - mkdir build && cd build
- cmake .. -DCMAKE_BUILD_TYPE=debug - cmake .. -DCMAKE_BUILD_TYPE=debug
- make OR make -j - make (*WARNING using docker you cannot use "make -j", errors will happen*)