mirror of
https://git.sr.ht/~kivikakk/niar
synced 2024-12-22 23:12:23 +00:00
work around black failing on fstrings.
This commit is contained in:
parent
0de6a6c202
commit
41065af2c8
|
@ -118,8 +118,9 @@ def main(np: Project, args):
|
|||
cmd = [
|
||||
"c++",
|
||||
*cxxflags,
|
||||
f"-I{np.path("build")}",
|
||||
f"-I{yosys.data_dir() / "include" / "backends" / "cxxrtl" / "runtime"}",
|
||||
"-I" + str(np.path("build")),
|
||||
"-I"
|
||||
+ str(yosys.data_dir() / "include" / "backends" / "cxxrtl" / "runtime"),
|
||||
"-c",
|
||||
str(cc_path),
|
||||
"-o",
|
||||
|
|
Loading…
Reference in a new issue