aboutsummaryrefslogtreecommitdiffstats
path: root/mistral/main.cc
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-06-05 13:57:04 +0100
committerGitHub <noreply@github.com>2021-06-05 13:57:04 +0100
commit4e85203a1360661b03771800d9f4ddcacb002ecf (patch)
tree935488cadca1186ce65ef70dd75c960cff984fce /mistral/main.cc
parenta3d8b4f9d198226ec0903e34a8d290b376b45c0b (diff)
parentbcc5158eab5910392fa6dd4f11d626f7cbcd00c7 (diff)
downloadnextpnr-4e85203a1360661b03771800d9f4ddcacb002ecf.tar.gz
nextpnr-4e85203a1360661b03771800d9f4ddcacb002ecf.tar.bz2
nextpnr-4e85203a1360661b03771800d9f4ddcacb002ecf.zip
Merge pull request #721 from YosysHQ/gatecat/mistral-cmake
Updates for latest libmistral
Diffstat (limited to 'mistral/main.cc')
-rw-r--r--mistral/main.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/mistral/main.cc b/mistral/main.cc
index 0afba3d8..bd9ef591 100644
--- a/mistral/main.cc
+++ b/mistral/main.cc
@@ -47,7 +47,6 @@ MistralCommandHandler::MistralCommandHandler(int argc, char **argv) : CommandHan
po::options_description MistralCommandHandler::getArchOptions()
{
po::options_description specific("Architecture specific options");
- specific.add_options()("mistral", po::value<std::string>(), "path to mistral root");
specific.add_options()("device", po::value<std::string>(), "device name (e.g. 5CSEBA6U23I7)");
specific.add_options()("qsf", po::value<std::string>(), "path to QSF constraints file");
specific.add_options()("rbf", po::value<std::string>(), "RBF bitstream to write");
@@ -74,13 +73,9 @@ void MistralCommandHandler::customBitstream(Context *ctx)
std::unique_ptr<Context> MistralCommandHandler::createContext(dict<std::string, Property> &values)
{
ArchArgs chipArgs;
- if (!vm.count("mistral")) {
- log_error("mistral must be specified on the command line\n");
- }
if (!vm.count("device")) {
log_error("device must be specified on the command line (e.g. --device 5CSEBA6U23I7)\n");
}
- chipArgs.mistral_root = vm["mistral"].as<std::string>();
chipArgs.device = vm["device"].as<std::string>();
auto ctx = std::unique_ptr<Context>(new Context(chipArgs));
if (vm.count("compress-rbf"))