aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2022-07-11 16:26:23 +0200
committerGitHub <noreply@github.com>2022-07-11 16:26:23 +0200
commitf086da8bdf79efc562c061d4e713e01231f9e5f5 (patch)
treed4f04fdc4ebf1959d5d2f9f7acdeb23d4d4b83e6 /kernel
parent2326b9f90a131a592a7ce966005bd147f1ae49b0 (diff)
parent58c51b9a0bd63af7bfc11f7ba4d19c0e933c18ba (diff)
downloadyosys-f086da8bdf79efc562c061d4e713e01231f9e5f5.tar.gz
yosys-f086da8bdf79efc562c061d4e713e01231f9e5f5.tar.bz2
yosys-f086da8bdf79efc562c061d4e713e01231f9e5f5.zip
Merge pull request #3392 from rockybulwinkle/rockybulwinkle-patch-1
Update tcl doc, yosys does not return data to tcl
Diffstat (limited to 'kernel')
-rw-r--r--kernel/yosys.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/yosys.cc b/kernel/yosys.cc
index 64d2b4def..c532115d8 100644
--- a/kernel/yosys.cc
+++ b/kernel/yosys.cc
@@ -774,6 +774,10 @@ struct TclPass : public Pass {
log("If any arguments are specified, these arguments are provided to the script via\n");
log("the standard $argc and $argv variables.\n");
log("\n");
+ log("Note, tcl will not recieve the output of any yosys command. If the output\n");
+ log("of the tcl commands are needed, use the yosys command 'tee' to redirect yosys's\n");
+ log("output to a temporary file.\n");
+ log("\n");
}
void execute(std::vector<std::string> args, RTLIL::Design *) override {
if (args.size() < 2)