Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/Compiler/CompilerOpenFPGA_ql.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8935,6 +8935,12 @@ std::unordered_map<int, CommandWrapperPtr> CompilerOpenFPGA_ql::getSynthesisComm
QLSettingsManager::getStringValue("yosys", "general", "mince_num");
}

if( !QLSettingsManager::getStringValue("yosys", "general", "de").empty() ) {
yosys_options += std::string(" -de") +
std::string(" ") +
QLSettingsManager::getStringValue("yosys", "general", "de");
}

// pass in the path to the device specific yosys libraries directly.
std::string yosys_modules_dir_path_string =
(QLDeviceManager::getInstance()->deviceYosysModulesDirPath()).string();
Expand Down
Loading