Changeset be76242 in clfs-embedded for BOOK/cross-tools
- Timestamp:
- Feb 4, 2007, 10:46:05 AM (18 years ago)
- Branches:
- master
- Children:
- 1603a9d
- Parents:
- 961b7c5
- Location:
- BOOK/cross-tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/cross-tools/mips/uclibc.xml
r961b7c5 rbe76242 74 74 need at add the following lines to your configuration:</para> 75 75 76 <screen os="m2"><userinput>echo "ARCH_ANY_ENDIAN=y" >>.config77 echo "ARCH_BIG_ENDIAN=y" >>.config78 echo "ARCH_WANTS_BIG_ENDIAN=y" >>.config</userinput></screen>76 <screen os="m2"><userinput>echo "ARCH_ANY_ENDIAN=y" >> .config 77 echo "ARCH_BIG_ENDIAN=y" >> .config 78 echo "ARCH_WANTS_BIG_ENDIAN=y" >> .config</userinput></screen> 79 79 80 80 <para os="m3">If your MIPS system is Little Endian, you will 81 81 need at add the following lines to your configuration:</para> 82 82 83 <screen os="m4"><userinput>echo "ARCH_ANY_ENDIAN=y" >>.config84 echo "ARCH_LITTLE_ENDIAN=y" >>.config85 echo "ARCH_WANTS_LITTLE_ENDIAN=y" >>.config</userinput></screen>83 <screen os="m4"><userinput>echo "ARCH_ANY_ENDIAN=y" >> .config 84 echo "ARCH_LITTLE_ENDIAN=y" >> .config 85 echo "ARCH_WANTS_LITTLE_ENDIAN=y" >> .config</userinput></screen> 86 86 87 87 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" -
BOOK/cross-tools/x86/uclibc.xml
r961b7c5 rbe76242 34 34 35 35 <screen os="d"><userinput>cp Makefile Makefile.orig 36 sed -e 's/$(LN) -fs/cp/g' Makefile.orig >Makefile36 sed -e 's/$(LN) -fs/cp/g' Makefile.orig > Makefile 37 37 for file in `find libc/sysdeps/linux -name Makefile`; do 38 38 cp $file $file.orig … … 72 72 sed -e "s:# ${config} is not set:${config}=y:" .config.orig > .config 73 73 done 74 echo "UCLIBC_HAS_FULL_RPC=y" >>.config75 echo "UCLIBC_HAS_REENTRANT_RPC=y" >>.config</userinput></screen>74 echo "UCLIBC_HAS_FULL_RPC=y" >> .config 75 echo "UCLIBC_HAS_REENTRANT_RPC=y" >> .config</userinput></screen> 76 76 77 77 <para os="l">We have made some changes to our config, let's make sure
Note:
See TracChangeset
for help on using the changeset viewer.