You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am thinking of data structures similar to below and parse a statement for vpath directive and VPATH variable. Then evaluate them and populate properly. And these data would be used in dependency build phase.
VPATH/vpath for ckati/ninja mode is missing.
I am thinking of data structures similar to below and parse a statement for vpath directive and VPATH variable. Then evaluate them and populate properly. And these data would be used in dependency build phase.
struct vpath {
string* pattern;
vector<string*> paths;
};
struct VpathInfo {
vector<vpath*> vpaths;
vector<string*> paths;
};
VpathInfo vpaths_;
I am not sure at which stage in dependency build phase, dependency node needs to be updated. Could anybody provide any suggestions and idea?
The text was updated successfully, but these errors were encountered: