Skip to content

Commit

Permalink
fix vivado default binary name to be able to correctly check for it
Browse files Browse the repository at this point in the history
  • Loading branch information
el3ctrician authored and qarlosalberto committed Jan 22, 2025
1 parent aee1a6d commit 4f8a47a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/colibri/linter/vivado.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import * as common from "./common";
import * as path_lib from "path";

export class Vivado extends Base_linter {
binary = "";
binary = "vivado";
extra_cmd = "-nolog";
argumentToCheck = ["-version"];

Expand All @@ -41,7 +41,7 @@ export class Vivado extends Base_linter {
let extra_cmd = "--sv";
if (file_lang === LANGUAGE.VHDL) {
binary = "xvhdl";
extra_cmd = "";
extra_cmd = "";
}
else if (file_lang === LANGUAGE.SYSTEMVERILOG) {
binary = "xvlog";
Expand Down

0 comments on commit 4f8a47a

Please sign in to comment.