make FPGA-X2P to be run conditionally

This commit is contained in:
tangxifan 2019-12-03 13:50:39 -07:00
parent 5b4ddfb3ce
commit 099863a956
1 changed files with 3 additions and 1 deletions

View File

@ -61,7 +61,9 @@ int main(int argc, char **argv) {
}
/* Run FPGA-SPICE tool suites*/
vpr_fpga_x2p_tool_suites(vpr_setup, Arch);
if (TRUE == vpr_setup.FPGA_SPICE_Opts.do_fpga_spice) {
vpr_fpga_x2p_tool_suites(vpr_setup, Arch);
}
entire_flow_end = clock();