Skip to content

Commit

Permalink
Include dependency list in hier child arguments
Browse files Browse the repository at this point in the history
Signed-off-by: Bartłomiej Chmiel <[email protected]>
  • Loading branch information
b-chmiel committed Dec 11, 2024
1 parent 60ccd98 commit b47e6b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/V3Options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -549,9 +549,9 @@ string V3Options::filePathCheckOneDir(const string& modname, const string& dirna
// 3: Delete the option and its argument if it is a number
int V3Options::stripOptionsForChildRun(const string& opt, bool forTop) {
if (opt == "j") return 3;
if (opt == "Mdir" || opt == "clk" || opt == "lib-create" || opt == "f" || opt == "v"
|| opt == "l2-name" || opt == "mod-prefix" || opt == "prefix" || opt == "protect-lib"
|| opt == "protect-key" || opt == "threads" || opt == "top-module") {
if (opt == "Mdir" || opt == "clk" || opt == "lib-create" || opt == "v" || opt == "l2-name"
|| opt == "mod-prefix" || opt == "prefix" || opt == "protect-lib" || opt == "protect-key"
|| opt == "threads" || opt == "top-module") {
return 2;
}
if (opt == "build" || (!forTop && (opt == "cc" || opt == "exe" || opt == "sc"))
Expand Down

0 comments on commit b47e6b6

Please sign in to comment.