diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-06-26 21:23:05 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-06-26 21:23:05 +0000 |
commit | c2abd16d69e6fb9514c91d81d25aa56a0633723c (patch) | |
tree | b5be9ecf7f024b7513f73a9fd79f2e743537a4ec /docs/overview.txt | |
parent | 5e7fa0debcf8a28813907bbdd8c85894e1a9f883 (diff) | |
download | crosstool-ng-c2abd16d69e6fb9514c91d81d25aa56a0633723c.tar.gz crosstool-ng-c2abd16d69e6fb9514c91d81d25aa56a0633723c.tar.bz2 crosstool-ng-c2abd16d69e6fb9514c91d81d25aa56a0633723c.zip |
Better handling of the steps lists:
- new make rulle: liststeps,
- new help entry telling about liststeps,
- update documentation accordingly.
Diffstat (limited to 'docs/overview.txt')
-rw-r--r-- | docs/overview.txt | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/docs/overview.txt b/docs/overview.txt index 2082d7eb..cd5c9f7e 100644 --- a/docs/overview.txt +++ b/docs/overview.txt @@ -178,22 +178,6 @@ Conversely, if you want to restart a build at a specific step you are debugging, you can pass the RESTART variable to make: make RESTART=some_step -The list of steps is, in order of appearence in the build process: - - libc_check_config - - kernel_check_config - - kernel_headers - - binutils - - cc_core_pass_1 - - libc_headers - - libc_start_files - - cc_core_pass_2 - - libfloat - - libc - - cc - - libc_finish - - tools - - debug - Alternatively, you can call make with the name of a step to just do that step: make libc_headers is equivalent to: @@ -205,6 +189,9 @@ at that step. Thus: are equivalent to: make STOP=libc_headers and: make RESTART=libc_headers +To obtain the list of acceptable steps, please call: + make liststeps + Note that in order to restart a build, you'll have to say 'Y' to the config option CT_DEBUG_CT_SAVE_STEPS, and that the previous build effectively went that far. |