diff options
author | Sylvain Munaut <tnt@246tNt.com> | 2019-08-10 16:22:04 +0200 |
---|---|---|
committer | Sylvain Munaut <tnt@246tNt.com> | 2019-08-10 16:22:04 +0200 |
commit | 82ce89e31583946651a597b8acf6a07ea7fe96a5 (patch) | |
tree | e0f9e983095e0a326c99195c5b30559bf37b2285 /ice40 | |
parent | c70f87e4c52a8d1d5da37b4409a8ae4245b36de0 (diff) | |
download | nextpnr-82ce89e31583946651a597b8acf6a07ea7fe96a5.tar.gz nextpnr-82ce89e31583946651a597b8acf6a07ea7fe96a5.tar.bz2 nextpnr-82ce89e31583946651a597b8acf6a07ea7fe96a5.zip |
ice40: Only warn about default package if there is no package argument
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'ice40')
-rw-r--r-- | ice40/main.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ice40/main.cc b/ice40/main.cc index 5e5bf6ad..5a5fa0c7 100644 --- a/ice40/main.cc +++ b/ice40/main.cc @@ -157,6 +157,10 @@ std::unique_ptr<Context> Ice40CommandHandler::createContext(std::unordered_map<s if (vm.count("package")) chipArgs.package = vm["package"].as<std::string>(); + else + log_warning("Use of default value for --package is deprecated. Please add '--package %s' to arguments.\n", + chipArgs.package.c_str()); + if (values.find("arch.name") != values.end()) { std::string arch_name = values["arch.name"].as_string(); if (arch_name != "ice40") @@ -207,9 +211,6 @@ std::unique_ptr<Context> Ice40CommandHandler::createContext(std::unordered_map<s } #endif - log_warning("Use of default value for --package is deprecated. Please add '--package %s' to arguments.\n", - chipArgs.package.c_str()); - auto ctx = std::unique_ptr<Context>(new Context(chipArgs)); for (auto &val : values) ctx->settings[ctx->id(val.first)] = val.second; |