summary refs log tree commit diff
path: root/pkgs/development/compilers/yosys/plugin-search-dirs.patch
blob: 0cb0aee9c7ed5dea6ed1a94084ea9a123c4a042d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
diff --git a/passes/cmds/plugin.cc b/passes/cmds/plugin.cc
index 3ed19497..f9534bd0 100644
--- a/passes/cmds/plugin.cc
+++ b/passes/cmds/plugin.cc
@@ -75,8 +75,27 @@ void load_plugin(std::string filename, std::vector<std::string> aliases)
 		#endif
 
 		void *hdl = dlopen(filename.c_str(), RTLD_LAZY|RTLD_LOCAL);
-		if (hdl == NULL && orig_filename.find('/') == std::string::npos)
-			hdl = dlopen((proc_share_dirname() + "plugins/" + orig_filename + ".so").c_str(), RTLD_LAZY|RTLD_LOCAL);
+		if (hdl == NULL && orig_filename.find('/') == std::string::npos) {
+			std::string install_dir = proc_share_dirname() + "plugins";
+
+			vector<string> all_dirs;
+			all_dirs.push_back(install_dir);
+
+			char* plugin_dirs = getenv("NIX_YOSYS_PLUGIN_DIRS");
+			if (plugin_dirs != NULL) {
+				std::string p(plugin_dirs), t;
+				std::stringstream ss(p);
+
+				while(std::getline(ss, t, ':')) {
+					all_dirs.push_back(t);
+				}
+			}
+
+			for (auto dir : all_dirs) {
+				hdl = dlopen((dir + "/" + orig_filename + ".so").c_str(), RTLD_LAZY|RTLD_LOCAL);
+				if (hdl != NULL) break;
+			}
+		}
 		if (hdl == NULL)
 			log_cmd_error("Can't load module `%s': %s\n", filename.c_str(), dlerror());
 		loaded_plugins[orig_filename] = hdl;