mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
Improve handling of comments in .sby files
This commit is contained in:
parent
6b730e7779
commit
221c8d24d7
|
@ -188,12 +188,14 @@ class SbyJob:
|
||||||
with open("%s/config.sby" % workdir, "r") as f:
|
with open("%s/config.sby" % workdir, "r") as f:
|
||||||
for line in f:
|
for line in f:
|
||||||
raw_line = line
|
raw_line = line
|
||||||
line = line.strip()
|
if mode in ["options", "engines", "files"]:
|
||||||
|
line = re.sub(r"\s*(\s#.*)?$", "", line)
|
||||||
|
if line == "" or line[0] == "#":
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
line = line.rstrip()
|
||||||
# print(line)
|
# print(line)
|
||||||
|
|
||||||
if line == "" or line[0] == "#":
|
|
||||||
continue
|
|
||||||
|
|
||||||
match = re.match(r"^\s*\[(.*)\]\s*$", line)
|
match = re.match(r"^\s*\[(.*)\]\s*$", line)
|
||||||
if match:
|
if match:
|
||||||
entries = match.group(1).split()
|
entries = match.group(1).split()
|
||||||
|
|
Loading…
Reference in a new issue