remove debug mode in compilation guidelines as we can use release in default now

This commit is contained in:
tangxifan 2020-07-04 19:19:06 -06:00
parent 1e6955aaa4
commit ece262f544
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ Dependencies and help using docker can be found [**here**](./docs/source/tutoria
# Clone the repository and go inside it # Clone the repository and go inside it
git clone https://github.com/LNIS-Projects/OpenFPGA.git && cd OpenFPGA git clone https://github.com/LNIS-Projects/OpenFPGA.git && cd OpenFPGA
mkdir build && cd build # Create a folder named build in the OpenPFGA repository 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 make # Compile the tool and its dependencies
``` ```
*cmake3.12 is recommended to compile OpenFPGA with GUI* *cmake3.12 is recommended to compile OpenFPGA with GUI*

View File

@ -14,7 +14,7 @@ In general, please follow the steps to compile
cd OpenFPGA cd OpenFPGA
mkdir build mkdir build
cd build cd build
cmake .. -DCMAKE_BUILD_TYPE=debug cmake ..
make make
.. note:: OpenFPGA requires gcc/g++ version >5 .. note:: OpenFPGA requires gcc/g++ version >5