Changeset c63dde1
- Timestamp:
- Jan 31, 2009, 3:06:05 PM (16 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- a9a7398
- Parents:
- 9ad863d
- Location:
- BOOK
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/boot/mips64/flags.xml
r9ad863d rc63dde1 13 13 <para>We will need to copy our build variables into our new system:</para> 14 14 15 <screen><userinput>echo export BUILD32=\""${BUILD32}\"" >> ${CLFS}/root/.bash_profile 16 echo export BUILDN32=\""${BUILDN32}\"" >> ${CLFS}/root/.bash_profile 17 echo export BUILD64=\""${BUILD64}\"" >> ${CLFS}/root/.bash_profile 18 echo export CLFS_TARGET32=\""${CLFS_TARGET32}\"" >> \ 19 ${CLFS}/root/.bash_profile</userinput></screen> 15 <screen><userinput>cat >> ${CLFS}/root/.bash_profile << EOF 16 export BUILD32="${BUILD32}" 17 export BUILDN32="${BUILDN32}" 18 export BUILD64="${BUILD64}" 19 export CLFS_TARGET32="${CLFS_TARGET32}" 20 EOF</userinput></screen> 20 21 21 22 </sect1> -
BOOK/boot/sparc64/flags.xml
r9ad863d rc63dde1 13 13 <para>We will need to copy our build variables into our new system:</para> 14 14 15 <screen><userinput>echo export BUILD32=\""${BUILD32}\"" >> ${CLFS}/root/.bash_profile 16 echo export BUILD64=\""${BUILD64}\"" >> ${CLFS}/root/.bash_profile 17 echo export CLFS_TARGET32=\""${CLFS_TARGET32}\"" >> \ 18 ${CLFS}/root/.bash_profile</userinput></screen> 15 <screen><userinput>cat >> ${CLFS}/root/.bash_profile << EOF 16 export BUILD32="${BUILD32}" 17 export BUILD64="${BUILD64}" 18 export CLFS_TARGET32="${CLFS_TARGET32}" 19 EOF</userinput></screen> 19 20 20 21 </sect1> -
BOOK/boot/x86_64/flags.xml
r9ad863d rc63dde1 13 13 <para>We will need to copy our build variables into our new system:</para> 14 14 15 <screen><userinput>echo export BUILD32=\""${BUILD32}\"" >> ${CLFS}/root/.bash_profile 16 echo export BUILD64=\""${BUILD64}\"" >> ${CLFS}/root/.bash_profile 17 echo export CLFS_TARGET32=\""${CLFS_TARGET32}\"" >> \ 18 ${CLFS}/root/.bash_profile</userinput></screen> 15 <screen><userinput>cat >> ${CLFS}/root/.bash_profile << EOF 16 export BUILD32="${BUILD32}" 17 export BUILD64="${BUILD64}" 18 export CLFS_TARGET32="${CLFS_TARGET32}" 19 EOF</userinput></screen> 19 20 20 21 </sect1> -
BOOK/chroot/mips64/flags.xml
r9ad863d rc63dde1 25 25 variables to prevent any build issues in the future:</para> 26 26 27 <screen><userinput>echo export BUILD32=\""${BUILD32}\"" >> ~/.bash_profile 28 echo export BUILDN32=\""${BUILDN32}\"" >> ~/.bash_profile 29 echo export BUILD64=\""${BUILD64}\"" >> ~/.bash_profile 30 echo export CLFS_TARGET32=\""${CLFS_TARGET32}\"" >> ~/.bash_profile</userinput></screen> 27 <screen><userinput>cat >> ${CLFS}/root/.bash_profile << EOF 28 export BUILD32="${BUILD32}" 29 export BUILDN32="${BUILDN32}" 30 export BUILD64="${BUILD64}" 31 export CLFS_TARGET32="${CLFS_TARGET32}" 32 EOF</userinput></screen> 31 33 32 34 </sect1> -
BOOK/chroot/ppc64/flags.xml
r9ad863d rc63dde1 24 24 variables to prevent any build issues in the future:</para> 25 25 26 <screen><userinput>echo export BUILD32=\""${BUILD32}\"" >> ~/.bash_profile 27 echo export BUILD64=\""${BUILD64}\"" >> ~/.bash_profile 28 echo export CLFS_TARGET32=\""${CLFS_TARGET32}\"" >> ~/.bash_profile</userinput></screen> 26 <screen><userinput>cat >> ${CLFS}/root/.bash_profile << EOF 27 export BUILD32="${BUILD32}" 28 export BUILD64="${BUILD64}" 29 export CLFS_TARGET32="${CLFS_TARGET32}" 30 EOF</userinput></screen> 29 31 30 32 </sect1> -
BOOK/chroot/sparc64/flags.xml
r9ad863d rc63dde1 24 24 variables to prevent any build issues in the future:</para> 25 25 26 <screen><userinput>echo export BUILD32=\""${BUILD32}\"" >> ~/.bash_profile 27 echo export BUILD64=\""${BUILD64}\"" >> ~/.bash_profile 28 echo export CLFS_TARGET32=\""${CLFS_TARGET32}\"" >> ~/.bash_profile</userinput></screen> 26 <screen><userinput>cat >> ${CLFS}/root/.bash_profile << EOF 27 export BUILD32="${BUILD32}" 28 export BUILD64="${BUILD64}" 29 export CLFS_TARGET32="${CLFS_TARGET32}" 30 EOF</userinput></screen> 29 31 30 32 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" -
BOOK/chroot/x86_64/flags.xml
r9ad863d rc63dde1 24 24 variables to prevent any build issues in the future:</para> 25 25 26 <screen><userinput>echo export BUILD32=\""${BUILD32}\"" >> ~/.bash_profile 27 echo export BUILD64=\""${BUILD64}\"" >> ~/.bash_profile 28 echo export CLFS_TARGET32=\""${CLFS_TARGET32}\"" >> ~/.bash_profile</userinput></screen> 26 <screen><userinput>cat >> ${CLFS}/root/.bash_profile << EOF 27 export BUILD32="${BUILD32}" 28 export BUILD64="${BUILD64}" 29 export CLFS_TARGET32="${CLFS_TARGET32}" 30 EOF</userinput></screen> 29 31 30 32 </sect1> -
BOOK/cross-tools/mips64/flags.xml
r9ad863d rc63dde1 23 23 xpointer="xpointer(//*[@os='c'])"/> 24 24 25 <screen os="d"><userinput>echo export BUILD32=\""${BUILD32}\"" >> ~/.bashrc 26 echo export BUILDN32=\""${BUILDN32}\"" >> ~/.bashrc 27 echo export BUILD64=\""${BUILD64}\"" >> ~/.bashrc</userinput></screen> 25 <screen os="d"><userinput>cat >> ~/.bashrc << EOF 26 export BUILD32="${BUILD32}" 27 export BUILDN32="${BUILDN32}" 28 export BUILD64="${BUILD64}" 29 EOF</userinput></screen> 28 30 29 31 </sect1> -
BOOK/cross-tools/multilib/flags.xml
r9ad863d rc63dde1 20 20 prevent issues if we stop and come back later:</para> 21 21 22 <screen os="d"><userinput>echo export BUILD32=\""${BUILD32}\"" >> ~/.bashrc 23 echo export BUILD64=\""${BUILD64}\"" >> ~/.bashrc</userinput></screen> 22 <screen os="d"><userinput>cat >> ~/.bashrc << EOF 23 export BUILD32="${BUILD32}" 24 export BUILD64="${BUILD64}" 25 EOF</userinput></screen> 24 26 25 27 </sect1> -
BOOK/cross-tools/sparc64-64/flags.xml
r9ad863d rc63dde1 21 21 xpointer="xpointer(//*[@os='c'])"/> 22 22 23 <screen os="d"><userinput>echo export BUILD64=\""${BUILD64}\"" >> ~/.bashrc 24 echo export GCCTARGET=\""${GCCTARGET}\"" >> ~/.bashrc</userinput></screen> 23 <screen os="d"><userinput>cat >> ~/.bashrc << EOF 24 export BUILD64="${BUILD64}" 25 export GCCTARGET="${GCCTARGET}" 26 EOF</userinput></screen> 25 27 26 28 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" -
BOOK/cross-tools/sparc64/flags.xml
r9ad863d rc63dde1 22 22 xpointer="xpointer(//*[@os='c'])"/> 23 23 24 <screen os="d"><userinput>echo export BUILD32=\""${BUILD32}\"" >> ~/.bashrc 25 echo export BUILD64=\""${BUILD64}\"" >> ~/.bashrc 26 echo export GCCTARGET=\""${GCCTARGET}\"" >> ~/.bashrc</userinput></screen> 24 <screen os="d"><userinput>cat >> ~/.bashrc << EOF 25 export BUILD32="${BUILD32}" 26 export BUILD64="${BUILD64}" 27 export GCCTARGET="${GCCTARGET}" 28 EOF</userinput></screen> 27 29 28 30 <para os="e">The following table gives the entires for different Sparc 64 capable -
BOOK/cross-tools/x86/variables.xml
r9ad863d rc63dde1 38 38 case you have to exit and restart building later:</para> 39 39 40 <screen os="f"><userinput>echo export CLFS_HOST=\""${CLFS_HOST}\"" >> ~/.bashrc 41 echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc</userinput></screen> 40 <screen os="f"><userinput>cat >> ~/.bashrc << EOF 41 export CLFS_HOST="${CLFS_HOST}" 42 export CLFS_TARGET="${CLFS_TARGET}" 43 EOF</userinput></screen> 42 44 43 45 <table os="g"> -
BOOK/cross-tools/x86_64/variables.xml
r9ad863d rc63dde1 37 37 xpointer="xpointer(//*[@os='e'])"/> 38 38 39 <screen os="f"><userinput>echo export CLFS_HOST=\""${CLFS_HOST}\"" >> ~/.bashrc 40 echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc 41 echo export CLFS_TARGET32=\""${CLFS_TARGET32}\"" >> ~/.bashrc</userinput></screen> 39 <screen os="f"><userinput>cat >> ~/.bashrc << EOF 40 export CLFS_HOST="${CLFS_HOST}" 41 export CLFS_TARGET="${CLFS_TARGET}" 42 export CLFS_TARGET32="${CLFS_TARGET32}" 43 EOF</userinput></screen> 42 44 43 45 </sect1>
Note:
See TracChangeset
for help on using the changeset viewer.