Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用“make”命令完成定义,如下所示:
make something -define "file=$(name)"
如何在我的系统 verilog 测试平台中使用这个定义?
+define调用编译器时,您需要将其转换为开关。例如,使用 modelsim/questa
+define
vlog +define+file=\"$(file)\" .....
根据您使用的外壳,您可能需要考虑如何通过引号。