remove debug mode in compilation guidelines as we can use release in default now
This commit is contained in:
parent
1e6955aaa4
commit
ece262f544
|
@ -13,7 +13,7 @@ Dependencies and help using docker can be found [**here**](./docs/source/tutoria
|
|||
# Clone the repository and go inside it
|
||||
git clone https://github.com/LNIS-Projects/OpenFPGA.git && cd OpenFPGA
|
||||
mkdir build && cd build # Create a folder named build in the OpenPFGA repository
|
||||
cmake .. -DCMAKE_BUILD_TYPE=debug # Create a Makefile in this folder using cmake
|
||||
cmake .. # Create a Makefile in this folder using cmake
|
||||
make # Compile the tool and its dependencies
|
||||
```
|
||||
*cmake3.12 is recommended to compile OpenFPGA with GUI*
|
||||
|
|
|
@ -14,7 +14,7 @@ In general, please follow the steps to compile
|
|||
cd OpenFPGA
|
||||
mkdir build
|
||||
cd build
|
||||
cmake .. -DCMAKE_BUILD_TYPE=debug
|
||||
cmake ..
|
||||
make
|
||||
|
||||
.. note:: OpenFPGA requires gcc/g++ version >5
|
||||
|
|
Loading…
Reference in New Issue