http://www.codesourcery.com/sgpp/lite/arm/portal/package1786/public/arm-none-linux-gnueabi/arm-2007q3-51-arm-none-linux-gnueabi.src.tar.bz2
[issue 1]
phenomenon: cc1: warnings being treated as errors 524: error: ignoring return value of 'asprintf', declared with attribute warn_unused_result make[4]: *** [elf32-arm.lo] Error 1
soution: We need one change then: --- a/packages/binutils/binutils-cross.inc +++ b/packages/binutils/binutils-cross.inc @@ -2,7 +2,9 @@ inherit sdk DEPENDS += "flex-native bison-native" FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/binutils-${PV}" EXTRA_OECONF = "--with-sysroot=${prefix}/${TARGET_SYS} / - --program-prefix=${TARGET_PREFIX}" + --program-prefix=${TARGET_PREFIX} / + --enable-install-libbfd / + --disable-werror" Thats based on: commit ab563c4562058c20f814da31a70e2a35e6984041 Author: Khem Raj <raj.khem at gmail.com > Date: Sun Sep 14 23:21:43 2008 +0000
Binutils cross SDK does need -Wno-error when compiling with gcc 4.3. Yes, I am using Intrepid already.
[issue 2]
phenomenon: egrep: Invalid range end /usr/bin/texi2dvi: cannot read .//home/ben/tools/toolchain/arm-2007q3-51/obj/binutils-src-2007q3-51-arm-none-linux-gnueabi-i686-linux-gnu/bfd/doc/bfd.texinfo, skipping. make[4]: *** [bfd.pdf] Error 1 solution: http://cvs.savannah.gnu.org/viewvc/texinfo/util/texi2dvi?root=texinfo&r1=1.157&r2=1.158 fix texi2dvi in host /usr/bin/texi2dvi echo "$command_line_filename" | $EGREP '^(/|[A-z]:/)' >&6 / <==> echo "$command_line_filename" | $EGREP '^(/|[A-Za-z]:/)' >&6 / The offending line is here: 1686: echo "$command_line_filename" | $EGREP '^(/|[A-z]:/)' >&6 / The problem is locale-dependent. With LC_ALL=C it works, with LANG=de_DE.utf8 it doesn't. I suggest you replace 'A-z' with 'A-Za-z', or pass LC_ALL=C to the egrep invocation.
[issue 3]
phenomenon: /bin/bash: epstopdf: command not found
solution: sudo apt-get install texlive-font-utils
[issue 4] phenomenon:
/home/ben/tools/toolchain/arm-2007q3-51/obj/binutils-src-2007q3-51-arm-none-linux-gnueabi-i686-linux-gnu/etc/configure.texi:1090: ==> Fatal error occurred, no output PDF file produced!
Transcript written on configure.log.
/usr/bin/texi2dvi: pdfetex exited with bad status, quitting.
solution:
hthttp://www-old.cae.wisc.edu/pipermail/octave-maintainers/2008-October/009216.html
You have to increase the save_size in your tex configuration (in /etc/texmf/texmf.d/95NonPath.cnf for debian): since the introduction of texinfo references for the seealso fields, the octave documentation has been too large
for the default tex settings, from 50000 to 100000.
etc/texmf/texmf.cnf, /etc/texmf/texmf.d/95NonPath.cnf, /etc/texmf/texmf.d/95NonPath.cnf.ucf-dist
tips:
1. nchen -> ben 2. i686-pc-linux-gnu-gcc -> i686-linux-gnu-gcc 3. when binutil/gdb configure, --enable-install-libbfd --disable-werror
cross compiler sourcery
最新推荐文章于 2022-07-01 15:49:54 发布