0

我希望有人可以帮助我解决这个问题...

这是我第一次接触yosys。首先,我尝试运行与 Clifford 在他的演示文稿中解释的完全相同的演示。我在以下位置下载了演示:https ://github.com/cliffordwolf/yosys/tree/master/manual/PRESENTATION_Intro

yosys 在 ABC 通行证处运行 beaks 并显示以下消息:

12. Executing ABC pass (technology mapping using ABC).

12.1. Extracting gate netlist of module `\counter' to `<abc-temp-dir>/input.blif'..
Extracted 6 gates and 12 wires to a netlist network with 4 inputs and 2 outputs.

12.1.1. Executing ABC.
Running ABC command: <yosys-exe-dir>/yosys-abc -s -f <abc-temp-dir>/abc.script 2>&1
ABC: ABC command line: "source <abc-temp-dir>/abc.script".
ABC: 
ABC: + read_blif <abc-temp-dir>/input.blif 
ABC: + read_lib -w /home/boris/Documents/Self Learning/yosys_synthesys/mycells.lib 
ABC: usage: read_lib [-SG float] [-M num] [-dnvwh] <file>
ABC:               reads Liberty library from file
ABC:    -S float : the slew parameter used to generate the library [default = 0.00]
ABC:    -G float : the gain parameter used to generate the library [default = 0.00]
ABC:    -M num   : skip gate classes whose size is less than this [default = 0]
ABC:    -d       : toggle dumping the parsed library into file "*_temp.lib" [default = no]
ABC:    -n       : toggle replacing gate/pin names by short strings [default = no]
ABC:    -v       : toggle writing verbose information [default = yes]
ABC:    -v       : toggle writing information about skipped gates [default = yes]
ABC:    -h       : prints the command summary
ABC:    <file>   : the name of a file to read
ABC: ** cmd error: aborting 'source <abc-temp-dir>/abc.script'
ERROR: Can't open ABC output file `/tmp/yosys-abc-KDGya6/output.blif'.
[boris@E7440 yosys_synthesys]$ 

我查看了上面错误语句中提到的文件位置,那里没有 output.blif:

[boris@E7440 yosys_synthesys]$ ll /tmp/yosys-abc-KDGya6/
total 12K
-rw-rw-r--. 1 boris boris 542 Jul  5 11:21 abc.script
-rw-rw-r--. 1 boris boris 526 Jul  5 11:21 input.blif
-rw-rw-r--. 1 boris boris 852 Jul  5 11:21 stdcells.genlib
[boris@E7440 yosys_synthesys]$ 

购买方式,这里有一些可能与调试相关的系统/工具信息:

Linux E7440.DELL 4.4.13-200.fc22.x86_64 #1 SMP Wed Jun 8 15:59:40 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

Yosys 0.6+141 (git sha1 080f95f, gcc 5.3.1 -fPIC -Os)

UC Berkeley, ABC 1.01 (compiled Mar  8 2015 01:00:49)
4

1 回答 1

1

问题已经解决...

解决方案 = 将 rundir 从:

/home/boris/Documents/自学/yosys_synthesys/mycells.lib

至:

/home/boris/Documents/SelfLearning/yosys_synthesys/mycells.lib

经验教训 = ABC 工具不接受路径/文件名中的空格字符。

于 2016-07-05T11:28:48.017 回答