Add --work library-selection option (#5891 partial).

This commit is contained in:
Wilson Snyder
2025-06-29 20:17:27 -04:00
parent c3d86626ee
commit 916a89761e
32 changed files with 350 additions and 139 deletions
+5
View File
@@ -193,6 +193,11 @@ string AstNode::prettyName(const string& namein) VL_PURE {
pos += 7;
continue;
}
if (0 == std::strncmp(pos, "__LIB__", 7)) {
pretty = ""; // Trim library name before module name
pos += 7;
continue;
}
if (0 == std::strncmp(pos, "__PVT__", 7)) {
pretty += "";
pos += 7;