3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00

Two passes are not allowed to have the same filename

This commit is contained in:
Benedikt Tutzer 2018-08-20 15:28:09 +02:00
parent d41c68ee5a
commit d87c7df27f

View file

@ -44,7 +44,7 @@ void load_plugin(std::string filename, std::vector<std::string> aliases)
if (filename.find('/') == std::string::npos)
filename = "./" + filename;
if (!loaded_plugins.count(filename)) {
if (!loaded_plugins.count(filename) && !loaded_python_plugins.count(filename)) {
#ifdef WITH_PYTHON
if(boost::algorithm::ends_with(filename, ".py"))