From e822056655bf290541e24e2f6e110e5cdcdb8759 Mon Sep 17 00:00:00 2001 From: alaindargelas <63669492+alaindargelas@users.noreply.github.com> Date: Mon, 23 Sep 2024 11:06:47 -0700 Subject: [PATCH] bitblast exe path fix (#1705) --- src/Simulation/Simulator.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Simulation/Simulator.cpp b/src/Simulation/Simulator.cpp index 24e7a40f0..7be0c4adf 100644 --- a/src/Simulation/Simulator.cpp +++ b/src/Simulation/Simulator.cpp @@ -1212,9 +1212,8 @@ bool Simulator::SimulatePNR(SimulatorType type) { const auto& path = std::filesystem::current_path(); std::string workingDir = std::filesystem::path(path / ProjManager()->projectName()).string(); - std::filesystem::path bitblast_exe = m_compiler->GetBinPath() / ".." / - "Raptor_Tools" / "netlist_bitblast" / - "bin" / "bitblast"; + std::filesystem::path bitblast_exe = + m_compiler->GetBinPath() / "bitblast"; std::filesystem::path datapath = m_compiler->GetDataPath().parent_path(); std::filesystem::path tech_datapath = datapath / "raptor" / "sim_models" / "rapidsilicon" /