summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/overview.txt15
1 files changed, 14 insertions, 1 deletions
diff --git a/docs/overview.txt b/docs/overview.txt
index 1425ed6..7bc9f61 100644
--- a/docs/overview.txt
+++ b/docs/overview.txt
@@ -127,14 +127,27 @@ The list of steps is, in order of appearence in the build process:
- kernel_check_config
- kernel_headers
- binutils
+ - cc_core_pass_1
- libc_headers
- - cc_core
+ - libc_start_files
+ - cc_core_pass_2
- libfloat
- libc
- cc
- libc_finish
- debug
+Alternatively, you can call make with the name of a step to just do that step:
+ make libc_headers
+is equivalent to:
+ make RESTART=libs_headers STOP=libc_headers
+
+The shortcuts -step_name and step_name- allow to respectively stop or restart
+at that step. Thus:
+ make -libc_headers make libc_headers-
+are equivalent to:
+ make STOP=libc_headers make RESTART=libc_headers
+
____________________________
/
Configuring crosstool-NG /