[Vivado_Tcl 4-169] The -directive option cannot be used with the -post_place_opt option Resolution: Please use only -directive switch.
时间: 2024-02-03 15:03:47 浏览: 296
这个错误提示是因为 `-directive` 和 `-post_place_opt` 这两个选项不能同时使用。请只使用 `-directive` 选项,或者移除 `-post_place_opt` 选项。
例如,如果原本的命令是这样的:
```
synth_design -top my_design -part xc7vx690tffg1761-2 -directive Explore -post_place_opt DONT_TOUCH
```
可以改为:
```
synth_design -top my_design -part xc7vx690tffg1761-2 -directive Explore
```
阅读全文