summaryrefslogtreecommitdiff
path: root/deps.dot
blob: be89fc41f7dd08f5922d62747c50b940e5deba03 (plain)
  1. digraph G {
  2. rank=same {linker kernel_headers libc_src cc_src}
  3. linker [color="blue", label="$TRIPLET $LINKER\n(binutils-mips-linux-gnu)"]
  4. kernel_headers [color="blue", label="$ARCH $KERNEL headers\n(linux-libc-dev-mips-cross)"]
  5. libc_src [color="blue", label="$LIBC source\n(eglibc-source)"]
  6. cc_src [color="blue", label="$CC source\n(gcc-4.4-source)"]
  7. subgraph cluster_cc {
  8. color="red"
  9. label="crosscompiler build\n(src:gcc4.4-mips-linux-gnu)"
  10. libc_headers [style=dotted, label="$TRIPLET $LIBC headers"]
  11. libc_stage1 [style=dotted, label="limited $TRIPLET $LIBC code"]
  12. cc_stage1 [style=dotted, label="stage 1 limited $TRIPLET $CC"]
  13. cc_stage2 [style=dotted, label="stage 2 limited $TRIPLET $CC"]
  14. libc [color="blue", label="$TRIPLET $LIBC headers and libs\n(libc6-mips-linux-gnu)"]
  15. cc [color="blue", label="$TRIPLET $CC\n(gcc-4.4-mips-linux-gnu)"]
  16. }
  17. // hack to push subgraph down below line of dependencies
  18. cc_src -> libc_headers [style="invis"]
  19. libc_src -> libc_headers
  20. cc_src -> cc_stage1
  21. linker -> cc_stage1
  22. kernel_headers -> cc_stage1
  23. libc_headers -> cc_stage1
  24. libc_src -> libc_stage1
  25. kernel_headers -> libc_stage1
  26. cc_stage1 -> libc_stage1
  27. linker -> libc_stage1
  28. cc_src -> cc_stage2
  29. kernel_headers -> cc_stage2
  30. libc_headers -> cc_stage2
  31. libc_stage1 -> cc_stage2
  32. linker -> cc_stage2
  33. libc_src -> libc
  34. kernel_headers -> libc
  35. cc_stage2 -> libc
  36. linker -> libc
  37. cc_src -> cc
  38. kernel_headers -> cc
  39. // libc_headers -> cc
  40. libc -> cc
  41. linker -> cc
  42. }