mirror of
https://git.sr.ht/~kivikakk/niar
synced 2024-12-22 23:02:24 +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 = [
|
cmd = [
|
||||||
"c++",
|
"c++",
|
||||||
*cxxflags,
|
*cxxflags,
|
||||||
f"-I{np.path("build")}",
|
"-I" + str(np.path("build")),
|
||||||
f"-I{yosys.data_dir() / "include" / "backends" / "cxxrtl" / "runtime"}",
|
"-I"
|
||||||
|
+ str(yosys.data_dir() / "include" / "backends" / "cxxrtl" / "runtime"),
|
||||||
"-c",
|
"-c",
|
||||||
str(cc_path),
|
str(cc_path),
|
||||||
"-o",
|
"-o",
|
||||||
|
|
Loading…
Reference in a new issue