Merge pull request #101 from mithro/small-fixes

Two small fixes
This commit is contained in:
Tim Ansell 2020-07-14 14:28:36 -07:00 committed by GitHub
commit 20971447cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 0 deletions

View File

@ -2,6 +2,8 @@ documentation: ["*.rst", "docs"]
files-definition: ["definition.json"]
files-layout-gds: ["*Makefile"]
files-layout-gds: ["*.gds"]
files-layout-lef-magic: ["*.magic.lef"]
files-layout-lef: ["*.lef"]

4
.github/labels.yml vendored
View File

@ -53,6 +53,10 @@
# File related labels are colored purple: d61dae
##########################################################################
- name: "files-build"
description: "Issues related to the Makefiles / build infrastructure."
color: "d61dae"
- name: "files-definition"
description: "Issues related to the definition.json provided for each cell."
color: "d61dae"

View File

@ -843,8 +843,16 @@ def main():
help="Include power leakage in file output.",
action='store_true',
default=False)
parser.add_argument(
"--debug",
help="Include verbose debug output on the console.",
action='store_true',
default=False)
args = parser.parse_args()
if args.debug:
global debug
debug = True
libdir = args.library_path[0]