summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2013-03-01 12:29:45 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-02 12:57:21 +0000
commitb7397f3559b2ca86943594122b3cf008e50f80a2 (patch)
tree6579b6fc927fb34daa5a7a5fc77b524d1a1d34ca /documentation
parent94153bf869c2e1adbbd10e217b6b1b2a25d2b38a (diff)
downloadpoky-b7397f3559b2ca86943594122b3cf008e50f80a2.tar.gz
dev-manual: Added multilib example references
Fixes YOCTO #1622 In the introduction paragraph I added references to the three multilib examples that are located in the meta-skeleton layer within the Poky repository. (From yocto-docs rev: f284525c6f9b655a61a0ac052a637b0aedb5b694) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml20
1 files changed, 18 insertions, 2 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 7e90eb8ef1..9f8fb333dc 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -1214,7 +1214,7 @@
1214 <para> 1214 <para>
1215 An example would be where you have most of a system compiled in 32-bit 1215 An example would be where you have most of a system compiled in 32-bit
1216 mode using 32-bit libraries, but you have something large, like a database 1216 mode using 32-bit libraries, but you have something large, like a database
1217 engine, that needs to be a 64-bit application and use 64-bit libraries. 1217 engine, that needs to be a 64-bit application and uses 64-bit libraries.
1218 Multilib allows you to get the best of both 32-bit and 64-bit libraries. 1218 Multilib allows you to get the best of both 32-bit and 64-bit libraries.
1219 </para> 1219 </para>
1220 1220
@@ -1234,6 +1234,21 @@
1234 page. 1234 page.
1235 </para> 1235 </para>
1236 1236
1237 <para>
1238 Aside from this wiki page, several examples exist in the
1239 <ulink url='&YOCTO_GIT_URL;/cgit.cgi/poky/tree/meta-skeleton'><filename>meta-skeleton</filename></ulink>
1240 layer found in the
1241 <link linkend='source-directory'>Source Directory</link>:
1242 <itemizedlist>
1243 <listitem><para><filename>multilib-example.conf</filename>
1244 configuration file</para></listitem>
1245 <listitem><para><filename>multilib-example2.conf</filename>
1246 configuration file</para></listitem>
1247 <listitem><para><filename>recipes-multilib/images/core-image-multilib-example.bb</filename>
1248 recipe</para></listitem>
1249 </itemizedlist>
1250 </para>
1251
1237 <section id='preparing-to-use-multilib'> 1252 <section id='preparing-to-use-multilib'>
1238 <title>Preparing to use Multilib</title> 1253 <title>Preparing to use Multilib</title>
1239 1254
@@ -1248,7 +1263,8 @@
1248 extended to support multiple libraries. 1263 extended to support multiple libraries.
1249 Many standard recipes are already extended and support multiple libraries. 1264 Many standard recipes are already extended and support multiple libraries.
1250 You can check in the <filename>meta/conf/multilib.conf</filename> 1265 You can check in the <filename>meta/conf/multilib.conf</filename>
1251 configuration file in the Source Directory to see how this is 1266 configuration file in the
1267 <link linkend='source-directory'>Source Directory</link> to see how this is
1252 done using the 1268 done using the
1253 <ulink url='&YOCTO_DOCS_REF_URL;#var-BBCLASSEXTEND'><filename>BBCLASSEXTEND</filename></ulink> 1269 <ulink url='&YOCTO_DOCS_REF_URL;#var-BBCLASSEXTEND'><filename>BBCLASSEXTEND</filename></ulink>
1254 variable. 1270 variable.