From 159701962a3136697bafcf9d313c02ca0737fb52 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Wed, 9 Aug 2017 13:28:52 +0200 Subject: [PATCH] Auto-detect JSON front-end --- kernel/yosys.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/yosys.cc b/kernel/yosys.cc index fd5a3504a..e5b22eba7 100644 --- a/kernel/yosys.cc +++ b/kernel/yosys.cc @@ -792,6 +792,8 @@ void run_frontend(std::string filename, std::string command, std::string *backen command = "vhdl"; else if (filename.size() > 4 && filename.substr(filename.size()-5) == ".blif") command = "blif"; + else if (filename.size() > 4 && filename.substr(filename.size()-5) == ".json") + command = "json"; else if (filename.size() > 3 && filename.substr(filename.size()-3) == ".il") command = "ilang"; else if (filename.size() > 3 && filename.substr(filename.size()-3) == ".ys") -- 2.30.2