From eb8a40f2bc1f4fbf1dc2c4c3eab270de3a513d4f Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 24 Feb 2026 14:00:01 -0500 Subject: [PATCH 1/8] add c files to be appended to vcs commands --- edalize/tools/vcs.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/edalize/tools/vcs.py b/edalize/tools/vcs.py index b5d8fd4e..300a5899 100644 --- a/edalize/tools/vcs.py +++ b/edalize/tools/vcs.py @@ -111,6 +111,9 @@ def _twostage_setup(self, edam, incdirs, include_files, unused_files, full64): user_files = [] vlog_files = [] + + c_files = [] + has_sv = False for f in unused_files.copy(): if not "simulation" in f.get("tags", ["simulation"]): @@ -134,6 +137,9 @@ def _twostage_setup(self, edam, incdirs, include_files, unused_files, full64): ) elif file_type == "user": user_files.append(f["name"]) + elif file_type == "cSource": + c_files.append(fname) + unused_files.remove(f) if f.get("define"): logger.warning( @@ -159,11 +165,12 @@ def _twostage_setup(self, edam, incdirs, include_files, unused_files, full64): self.f_files["vcs.f"] = options - self.target_files = include_files + vlog_files - self.vcs_files = vlog_files + self.target_files = include_files + vlog_files + c_files + self.vcs_files = vlog_files + c_files def _threestage_setup(self, edam, incdirs, include_files, unused_files, full64): filegroups = [] + c_files = [] prev_fileopts = ("", "", "") # file_type, logical_name, defines for f in unused_files.copy(): lib = f.get("logical_name", "work") @@ -190,6 +197,9 @@ def _threestage_setup(self, edam, incdirs, include_files, unused_files, full64): elif file_type == "user": self.user_files.append(f["name"]) cmd = None + elif file_type == "cSource": + c_files.append(f["name"]) + cmd = None else: cmd = None @@ -255,8 +265,8 @@ def _threestage_setup(self, edam, incdirs, include_files, unused_files, full64): self.commands.add(cmds, self.target_files, depfiles + list(self.f_files.keys())) - self.f_files["vcs.f"] = ["-top", self.toplevel] + self.tool_options.get( - "vcs_options", [] + self.f_files["vcs.f"] = ( + ["-top", self.toplevel] + self.tool_options.get("vcs_options", []) + c_files ) self.vcs_files = [] From 452bb16ee3d940a3534f0f0e905b6c31084ac37f Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 26 Feb 2026 13:29:43 -0500 Subject: [PATCH 2/8] add c files to vcs tests --- tests/tools/vcs/2stage_basic/Makefile | 4 ++-- tests/tools/vcs/2stage_minimal/Makefile | 4 ++-- tests/tools/vcs/basic/vcs.f | 2 +- tests/tools/vcs/minimal/vcs.f | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/tools/vcs/2stage_basic/Makefile b/tests/tools/vcs/2stage_basic/Makefile index 0536db20..43c233ad 100644 --- a/tests/tools/vcs/2stage_basic/Makefile +++ b/tests/tools/vcs/2stage_basic/Makefile @@ -2,8 +2,8 @@ all: design -design: vlog_incfile sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv vcs.f parameters.txt - $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv +design: vlog_incfile sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c c_header.h vcs.f parameters.txt + $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c c_header.h run: $(EDALIZE_LAUNCHER) ./design $(EXTRA_OPTIONS) and some run options diff --git a/tests/tools/vcs/2stage_minimal/Makefile b/tests/tools/vcs/2stage_minimal/Makefile index 45fa7c54..5917f893 100644 --- a/tests/tools/vcs/2stage_minimal/Makefile +++ b/tests/tools/vcs/2stage_minimal/Makefile @@ -2,8 +2,8 @@ all: design -design: vlog_incfile sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv vcs.f parameters.txt - $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv +design: vlog_incfile sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c c_header.h vcs.f parameters.txt + $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c c_header.h run: $(EDALIZE_LAUNCHER) ./design $(EXTRA_OPTIONS) diff --git a/tests/tools/vcs/basic/vcs.f b/tests/tools/vcs/basic/vcs.f index b40c83a1..971685d6 100644 --- a/tests/tools/vcs/basic/vcs.f +++ b/tests/tools/vcs/basic/vcs.f @@ -1 +1 @@ --top top_module some vcs options +-top top_module some vcs options c_file.c c_header.h diff --git a/tests/tools/vcs/minimal/vcs.f b/tests/tools/vcs/minimal/vcs.f index 0a41b604..de9644d8 100644 --- a/tests/tools/vcs/minimal/vcs.f +++ b/tests/tools/vcs/minimal/vcs.f @@ -1 +1 @@ --top top_module +-top top_module c_file.c c_header.h From 764bc28de8b17d728c6e6057407fc2bad3efba91 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 26 Feb 2026 13:43:25 -0500 Subject: [PATCH 3/8] introduce cppSource support to vcs tool --- edalize/tools/vcs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edalize/tools/vcs.py b/edalize/tools/vcs.py index 300a5899..b0ad2b1c 100644 --- a/edalize/tools/vcs.py +++ b/edalize/tools/vcs.py @@ -137,7 +137,7 @@ def _twostage_setup(self, edam, incdirs, include_files, unused_files, full64): ) elif file_type == "user": user_files.append(f["name"]) - elif file_type == "cSource": + elif file_type == "cSource" or file_type == "cppSource": c_files.append(fname) unused_files.remove(f) @@ -197,7 +197,7 @@ def _threestage_setup(self, edam, incdirs, include_files, unused_files, full64): elif file_type == "user": self.user_files.append(f["name"]) cmd = None - elif file_type == "cSource": + elif file_type == "cSource" or file_type == "cppSource": c_files.append(f["name"]) cmd = None else: From eac0162e3a4b340c7e61546421e03f635684f348 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 26 Feb 2026 13:50:35 -0500 Subject: [PATCH 4/8] add cpp support to vcs tool --- tests/tools/vcs/2stage_basic/Makefile | 4 ++-- tests/tools/vcs/2stage_minimal/Makefile | 4 ++-- tests/tools/vcs/basic/vcs.f | 2 +- tests/tools/vcs/minimal/vcs.f | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/tools/vcs/2stage_basic/Makefile b/tests/tools/vcs/2stage_basic/Makefile index 43c233ad..d77e78ce 100644 --- a/tests/tools/vcs/2stage_basic/Makefile +++ b/tests/tools/vcs/2stage_basic/Makefile @@ -2,8 +2,8 @@ all: design -design: vlog_incfile sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c c_header.h vcs.f parameters.txt - $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c c_header.h +design: vlog_incfile sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp c_header.h c_header.h vcs.f parameters.txt + $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp c_header.h c_header.h run: $(EDALIZE_LAUNCHER) ./design $(EXTRA_OPTIONS) and some run options diff --git a/tests/tools/vcs/2stage_minimal/Makefile b/tests/tools/vcs/2stage_minimal/Makefile index 5917f893..6609936e 100644 --- a/tests/tools/vcs/2stage_minimal/Makefile +++ b/tests/tools/vcs/2stage_minimal/Makefile @@ -2,8 +2,8 @@ all: design -design: vlog_incfile sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c c_header.h vcs.f parameters.txt - $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c c_header.h +design: vlog_incfile sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp c_header.h c_header.h vcs.f parameters.txt + $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp c_header.h c_header.h run: $(EDALIZE_LAUNCHER) ./design $(EXTRA_OPTIONS) diff --git a/tests/tools/vcs/basic/vcs.f b/tests/tools/vcs/basic/vcs.f index 971685d6..45160335 100644 --- a/tests/tools/vcs/basic/vcs.f +++ b/tests/tools/vcs/basic/vcs.f @@ -1 +1 @@ --top top_module some vcs options c_file.c c_header.h +-top top_module some vcs options c_file.c cpp_file.cpp c_header.h c_header.h diff --git a/tests/tools/vcs/minimal/vcs.f b/tests/tools/vcs/minimal/vcs.f index de9644d8..67a607b8 100644 --- a/tests/tools/vcs/minimal/vcs.f +++ b/tests/tools/vcs/minimal/vcs.f @@ -1 +1 @@ --top top_module c_file.c c_header.h +-top top_module c_file.c cpp_file.cpp c_header.h c_header.h From 8ba9be840f8c8ebd6eb3ba708a7791c473710ad5 Mon Sep 17 00:00:00 2001 From: arkosh Date: Thu, 5 Mar 2026 12:44:32 -0500 Subject: [PATCH 5/8] add cSource to include directory parsing --- edalize/tools/vcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edalize/tools/vcs.py b/edalize/tools/vcs.py index b0ad2b1c..b6f5d3c3 100644 --- a/edalize/tools/vcs.py +++ b/edalize/tools/vcs.py @@ -73,7 +73,7 @@ def setup(self, edam): continue file_type = f.get("file_type", "") if file_type.startswith("verilogSource") or file_type.startswith( - "systemVerilogSource" + "systemVerilogSource" or file_type.startswith("cSource") ): if self._add_include_dir(f, incdirs, force_slash=True): include_files.append(f["name"]) From 6ea0eaf892a2af8678f0bbad260a269350e92f16 Mon Sep 17 00:00:00 2001 From: arkosh Date: Thu, 5 Mar 2026 13:54:13 -0500 Subject: [PATCH 6/8] add cpp and c include files to incdir function --- edalize/tools/vcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edalize/tools/vcs.py b/edalize/tools/vcs.py index b6f5d3c3..b46045e8 100644 --- a/edalize/tools/vcs.py +++ b/edalize/tools/vcs.py @@ -222,7 +222,7 @@ def _threestage_setup(self, edam, incdirs, include_files, unused_files, full64): for fg in filegroups: # Ignore empty file groups if fg[1]: - (cmd, file_type, lib, defines) = fg[0] + cmd, file_type, lib, defines = fg[0] depfiles += fg[1] options = self.tool_options.get("analysis_options", []).copy() if cmd == "vlogan": From e63e029032f1eea91a5e2e3bbef60eaa466ccfd5 Mon Sep 17 00:00:00 2001 From: ArkoshEternal Date: Mon, 9 Mar 2026 12:22:52 -0400 Subject: [PATCH 7/8] fix syntax issue I fixed before --- edalize/tools/vcs.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/edalize/tools/vcs.py b/edalize/tools/vcs.py index b46045e8..dfbd6f3f 100644 --- a/edalize/tools/vcs.py +++ b/edalize/tools/vcs.py @@ -72,8 +72,11 @@ def setup(self, edam): if not "simulation" in f.get("tags", ["simulation"]): continue file_type = f.get("file_type", "") - if file_type.startswith("verilogSource") or file_type.startswith( - "systemVerilogSource" or file_type.startswith("cSource") + if ( + file_type.startswith("verilogSource") + or file_type.startswith("systemVerilogSource") + or file_type.startswith("cSource") + or file_type.startswith("cppSource") ): if self._add_include_dir(f, incdirs, force_slash=True): include_files.append(f["name"]) From e1d18c308770f2fd63e2b07804ecb8e0387d09ef Mon Sep 17 00:00:00 2001 From: ArkoshEternal Date: Mon, 9 Mar 2026 13:59:05 -0400 Subject: [PATCH 8/8] improve dependency ordering for c include files --- edalize/tools/vcs.py | 39 ++++++++++++++++--------- tests/tools/vcs/2stage_basic/Makefile | 4 +-- tests/tools/vcs/2stage_minimal/Makefile | 4 +-- tests/tools/vcs/basic/Makefile | 2 +- tests/tools/vcs/basic/vcs.f | 2 +- tests/tools/vcs/minimal/Makefile | 2 +- tests/tools/vcs/minimal/vcs.f | 2 +- 7 files changed, 33 insertions(+), 22 deletions(-) diff --git a/edalize/tools/vcs.py b/edalize/tools/vcs.py index dfbd6f3f..995c405e 100644 --- a/edalize/tools/vcs.py +++ b/edalize/tools/vcs.py @@ -65,28 +65,35 @@ def setup(self, edam): self.user_files = [] incdirs = [] - include_files = [] + rtl_include_files = [] + c_include_files = [] unused_files = self.files.copy() # Get all include dirs. Move include files to a separate list for f in self.files: if not "simulation" in f.get("tags", ["simulation"]): continue file_type = f.get("file_type", "") - if ( - file_type.startswith("verilogSource") - or file_type.startswith("systemVerilogSource") - or file_type.startswith("cSource") - or file_type.startswith("cppSource") + if file_type.startswith("verilogSource") or file_type.startswith( + "systemVerilogSource" ): if self._add_include_dir(f, incdirs, force_slash=True): - include_files.append(f["name"]) + rtl_include_files.append(f["name"]) + unused_files.remove(f) + + elif file_type.startswith("cSource") or file_type.startswith("cppSource"): + if self._add_include_dir(f, incdirs, force_slash=True): + c_include_files.append(f["name"]) unused_files.remove(f) full64 = [] if self.tool_options.get("32bit") else ["-full64"] if self.tool_options.get("2_stage_flow"): - self._twostage_setup(edam, incdirs, include_files, unused_files, full64) + self._twostage_setup( + edam, incdirs, rtl_include_files, c_include_files, unused_files, full64 + ) else: - self._threestage_setup(edam, incdirs, include_files, unused_files, full64) + self._threestage_setup( + edam, incdirs, rtl_include_files, c_include_files, unused_files, full64 + ) self.edam = edam.copy() self.edam["files"] = unused_files @@ -109,7 +116,9 @@ def setup(self, edam): ) self.commands.set_default_target(binary_name) - def _twostage_setup(self, edam, incdirs, include_files, unused_files, full64): + def _twostage_setup( + self, edam, incdirs, rtl_include_files, c_include_files, unused_files, full64 + ): user_files = [] @@ -168,10 +177,12 @@ def _twostage_setup(self, edam, incdirs, include_files, unused_files, full64): self.f_files["vcs.f"] = options - self.target_files = include_files + vlog_files + c_files + self.target_files = rtl_include_files + c_include_files + vlog_files + c_files self.vcs_files = vlog_files + c_files - def _threestage_setup(self, edam, incdirs, include_files, unused_files, full64): + def _threestage_setup( + self, edam, incdirs, rtl_include_files, c_include_files, unused_files, full64 + ): filegroups = [] c_files = [] prev_fileopts = ("", "", "") # file_type, logical_name, defines @@ -235,7 +246,7 @@ def _threestage_setup(self, edam, incdirs, include_files, unused_files, full64): options += [defines] options += ["+incdir+" + d for d in incdirs] target_file = f"{lib}.workdir/AN.DB/make.vlogan" - depfiles += include_files + depfiles += rtl_include_files elif cmd == "vhdlan": options += self.tool_options.get("vhdlan_options", []) target_file = f"{lib}.workdir/64/vhmra.sdb" @@ -265,7 +276,7 @@ def _threestage_setup(self, edam, incdirs, include_files, unused_files, full64): + ["-file", f_file, "-work", lib, "-l", logfile] + fg[1] ) - + depfiles += c_include_files self.commands.add(cmds, self.target_files, depfiles + list(self.f_files.keys())) self.f_files["vcs.f"] = ( diff --git a/tests/tools/vcs/2stage_basic/Makefile b/tests/tools/vcs/2stage_basic/Makefile index d77e78ce..c441dc97 100644 --- a/tests/tools/vcs/2stage_basic/Makefile +++ b/tests/tools/vcs/2stage_basic/Makefile @@ -2,8 +2,8 @@ all: design -design: vlog_incfile sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp c_header.h c_header.h vcs.f parameters.txt - $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp c_header.h c_header.h +design: vlog_incfile c_header.h c_header.h sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp vcs.f parameters.txt + $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp run: $(EDALIZE_LAUNCHER) ./design $(EXTRA_OPTIONS) and some run options diff --git a/tests/tools/vcs/2stage_minimal/Makefile b/tests/tools/vcs/2stage_minimal/Makefile index 6609936e..0aea5b61 100644 --- a/tests/tools/vcs/2stage_minimal/Makefile +++ b/tests/tools/vcs/2stage_minimal/Makefile @@ -2,8 +2,8 @@ all: design -design: vlog_incfile sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp c_header.h c_header.h vcs.f parameters.txt - $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp c_header.h c_header.h +design: vlog_incfile c_header.h c_header.h sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp vcs.f parameters.txt + $(EDALIZE_LAUNCHER) vcs -full64 -o design -file vcs.f -parameters parameters.txt sv_file.sv vlog_file.v vlog_with_define.v vlog05_file.v another_sv_file.sv c_file.c cpp_file.cpp run: $(EDALIZE_LAUNCHER) ./design $(EXTRA_OPTIONS) diff --git a/tests/tools/vcs/basic/Makefile b/tests/tools/vcs/basic/Makefile index 8cb9caa4..4d7107a5 100644 --- a/tests/tools/vcs/basic/Makefile +++ b/tests/tools/vcs/basic/Makefile @@ -2,7 +2,7 @@ all: custom_binary_name -work.workdir/AN.DB/make.vlogan work.workdir/64/vhmra.sdb libx.workdir/64/vhmra.sdb: sv_file.sv vlog_incfile vlog_file.v vlog_incfile vlog_with_define.v vlog_incfile vlog05_file.v vlog_incfile vhdl_file.vhd vhdl_lfile vhdl2008_file another_sv_file.sv vlog_incfile work.f work_1.f work_2.f work_3.f work_4.f libx.f work_5.f work_6.f +work.workdir/AN.DB/make.vlogan work.workdir/64/vhmra.sdb libx.workdir/64/vhmra.sdb: sv_file.sv vlog_incfile vlog_file.v vlog_incfile vlog_with_define.v vlog_incfile vlog05_file.v vlog_incfile vhdl_file.vhd vhdl_lfile vhdl2008_file another_sv_file.sv vlog_incfile c_header.h c_header.h work.f work_1.f work_2.f work_3.f work_4.f libx.f work_5.f work_6.f $(EDALIZE_LAUNCHER) vlogan -full64 -file work.f -work work -l work.log sv_file.sv $(EDALIZE_LAUNCHER) vlogan -full64 -file work_1.f -work work -l work_1.log vlog_file.v $(EDALIZE_LAUNCHER) vlogan -full64 -file work_2.f -work work -l work_2.log vlog_with_define.v diff --git a/tests/tools/vcs/basic/vcs.f b/tests/tools/vcs/basic/vcs.f index 45160335..a9619cf9 100644 --- a/tests/tools/vcs/basic/vcs.f +++ b/tests/tools/vcs/basic/vcs.f @@ -1 +1 @@ --top top_module some vcs options c_file.c cpp_file.cpp c_header.h c_header.h +-top top_module some vcs options c_file.c cpp_file.cpp diff --git a/tests/tools/vcs/minimal/Makefile b/tests/tools/vcs/minimal/Makefile index d425cc51..a639d7da 100644 --- a/tests/tools/vcs/minimal/Makefile +++ b/tests/tools/vcs/minimal/Makefile @@ -2,7 +2,7 @@ all: design -work.workdir/AN.DB/make.vlogan work.workdir/64/vhmra.sdb libx.workdir/64/vhmra.sdb: sv_file.sv vlog_incfile vlog_file.v vlog_incfile vlog_with_define.v vlog_incfile vlog05_file.v vlog_incfile vhdl_file.vhd vhdl_lfile vhdl2008_file another_sv_file.sv vlog_incfile work.f work_1.f work_2.f work_3.f work_4.f libx.f work_5.f work_6.f +work.workdir/AN.DB/make.vlogan work.workdir/64/vhmra.sdb libx.workdir/64/vhmra.sdb: sv_file.sv vlog_incfile vlog_file.v vlog_incfile vlog_with_define.v vlog_incfile vlog05_file.v vlog_incfile vhdl_file.vhd vhdl_lfile vhdl2008_file another_sv_file.sv vlog_incfile c_header.h c_header.h work.f work_1.f work_2.f work_3.f work_4.f libx.f work_5.f work_6.f $(EDALIZE_LAUNCHER) vlogan -full64 -file work.f -work work -l work.log sv_file.sv $(EDALIZE_LAUNCHER) vlogan -full64 -file work_1.f -work work -l work_1.log vlog_file.v $(EDALIZE_LAUNCHER) vlogan -full64 -file work_2.f -work work -l work_2.log vlog_with_define.v diff --git a/tests/tools/vcs/minimal/vcs.f b/tests/tools/vcs/minimal/vcs.f index 67a607b8..c0677c17 100644 --- a/tests/tools/vcs/minimal/vcs.f +++ b/tests/tools/vcs/minimal/vcs.f @@ -1 +1 @@ --top top_module c_file.c cpp_file.cpp c_header.h c_header.h +-top top_module c_file.c cpp_file.cpp