diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2016-07-18 11:44:56 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-01 12:14:59 +0100 |
commit | 8f2d8c2061d3dd0dc08ba7b70a10b417e94e62e7 (patch) | |
tree | c4255e45c7cdab4555f697d9a4284dd9e7fb6a9f /documentation/ref-manual/ref-tasks.xml | |
parent | 04c611290c1574ea97c960363b15823c382b2b1f (diff) | |
download | poky-8f2d8c2061d3dd0dc08ba7b70a10b417e94e62e7.tar.gz |
ref-manual: Fleshed out the do_compile task.
Fixes [YOCTO #9964]
Added more detailed information to the do_compile task. Also, provided
some information about oe_runmake in the base.bbclass refrence.
Finally, put some detail in the "Shared State" section concerning
do_deploy[dirs].
(From yocto-docs rev: 5d0612a57cc8e035a2194ada21e65055ef2b8a2e)
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/ref-tasks.xml')
-rw-r--r-- | documentation/ref-manual/ref-tasks.xml | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/documentation/ref-manual/ref-tasks.xml b/documentation/ref-manual/ref-tasks.xml index d2502362d7..9b1e8e3a41 100644 --- a/documentation/ref-manual/ref-tasks.xml +++ b/documentation/ref-manual/ref-tasks.xml | |||
@@ -69,9 +69,19 @@ | |||
69 | <title><filename>do_compile</filename></title> | 69 | <title><filename>do_compile</filename></title> |
70 | 70 | ||
71 | <para> | 71 | <para> |
72 | Compiles the source in the compilation directory, which is pointed | 72 | Compiles the source code. |
73 | to by the | 73 | This task runs with the current working directory set |
74 | <link linkend='var-B'><filename>B</filename></link> variable. | 74 | to |
75 | <filename>${</filename><link linkend='var-B'><filename>B</filename></link><filename>}</filename>. | ||
76 | </para> | ||
77 | |||
78 | <para> | ||
79 | The default behavior of this task is to run the | ||
80 | <filename>oe_runmake</filename> task if a makefile | ||
81 | (<filename>Makefile</filename>, <filename>makefile</filename>, | ||
82 | or <filename>GNUmakefile</filename>) is found. | ||
83 | If no such file is found, the <filename>do_compile</filename> | ||
84 | task does nothing. | ||
75 | </para> | 85 | </para> |
76 | </section> | 86 | </section> |
77 | 87 | ||