We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7499295 commit e89fd6aCopy full SHA for e89fd6a
lib/Frontend/ModuleInterfaceLoader.cpp
@@ -1715,6 +1715,15 @@ void InterfaceSubContextDelegateImpl::inheritOptionsForBuildingInterface(
1715
}
1716
break;
1717
1718
+ case PluginSearchOption::Kind::LoadPlugin: {
1719
+ auto &val = entry.get<PluginSearchOption::LoadPlugin>();
1720
+ for (auto &moduleName : val.ModuleNames) {
1721
+ GenericArgs.push_back("-load-plugin");
1722
+ GenericArgs.push_back(
1723
+ ArgSaver.save(val.LibraryPath + ":" + val.ServerPath + "#" + moduleName));
1724
+ }
1725
+ break;
1726
1727
case PluginSearchOption::Kind::PluginPath: {
1728
auto &val = entry.get<PluginSearchOption::PluginPath>();
1729
GenericArgs.push_back("-plugin-path");
0 commit comments