Lines Matching full:dependencies
5 # Synopsis: Given a list of possibly cyclic dependencies, merge all the
7 # dependencies between different parts of LLVM.
34 my @dependencies = split(/ /, $dependency_str);
35 $DEPS{$module} = \@dependencies;
38 # Partition our raw dependencies into sets of cyclically-connected nodes.
41 # Print out the finished cycles, with their dependencies.
47 # Merge the dependencies of all modules in this cycle.
48 my %dependencies;
50 @dependencies{@{$DEPS{$module}}} = 1;
53 # Prune the known cyclic dependencies.
55 delete $dependencies{$module};
74 join(' ', sort keys %dependencies) . "\n");