Hi,<br><br>I had a lot of problems with the compilation, but I got to generate a binary for LEON.<br>However, there is a error when I run this in LEON (at FPGA). I will to explain what I am doing.<br><br>Firstly, it is the my compilation:
<br><br># Clean all<br>cd /path_theora_hw/<br>make distclean<br>cd libogg-1.1.3/<br>make distclean<br><br># Set CROSS-Compiler and parameters<br>export CC=sparc-elf-gcc<br>export CXX=sparc-elf-gcc<br>export CFLAGS=&#39;-mv8 -msoft-float&#39;
<br><br>#Configure and install OGG lib<br>./configure --prefix=/path_theora_hw/ --target=sparc-elf --host=sparc-elf --enable-static&nbsp; <br>make<br>#I need to generate the bin&#39;s of OGG for LEON too and install in the path_theora_hw
<br>make install<br><br><br>#Configure and make Theora for LEON (sparc)<br>cd ../<br>./configure --prefix=/path_theora_hw/ --target=sparc-elf --host=sparc-elf --enable-static&nbsp; <br>#Here, I am compiling lib of theora and a dump_video_hardware.c
<br>make<br><br>----------------------------------<br><br>This dump_video_hardware.c is a modified file of dump_video.c that I created in order to test a player in LEON. I removed all file&#39;s functions and I am compiling with a vetor of inputs of datas encoded.
<br><br>Well, with these commands and some details* (below I will comment), I get the binary for LEON.<br>But, when I run there is this erro.<br><br>IU in error mode (tt = 0x07)<br>400013a4 e8220011 st %l4, [%o0 + %l1]<br>
<br>I got some informations from leon_sparc list and the trap type 0x07 is a memory access to unaligned address.<br>So my store &quot;st %l4,[%o0+%l1]&quot; is trying to save register l4 to an unaligned address (o0+l1). <br>
Some architectures support unaligned stores by SPARC does not (just in 4 by 4 bytes). <br>Firsly I thought that it could be a bad compilation, but most likely it is not a bad compilation.<br>Some of the code may not be SPARC compatible and needs rewriting. 
<br>I debug this and I discovered that this error is from function ogg_sync_pageout() (OGG lib).<br>This function do some copies of buffers and it should be doing some unaligned access. <br>I will probably have to rewrite this, but it depends on how the code was written in the first place some times it can be easily solved by aligning data structures. 
<br><br>I can believe this! , Bad news!! Timothy and Ralph, do you have any idea? do you know the OGG lib?<br><br><br>* Some considerations..<br>- A other doubt is with a file included in ogg/ogg.h, that is the &quot;sys/type.h&quot;.
<br>It is a C header that is in &quot;/usr/include/sys/sys.h&quot;. Then, when this file is include I don&#39;t know if any libray (and/or define&#39;s) compiled to my computer (x86) is linked. I think its improbable, but maybe it can be the cause of the problem.
<br><br>- The Cross compile didn&#39;t get recognize the function toupper() in the tagcompare() &lt;comment.c&gt;. Because I am not using this (I think its just used in Encoder) I disabled this.<br><br>Thanks,<br><br><br>
André Costa<br><br><div><span class="gmail_quote">On 5/24/07, <b class="gmail_sendername">Ralph Giles</b> &lt;<a href="mailto:giles@xiph.org" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">giles@xiph.org
</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Thu, May 24, 2007 at 06:19:20PM -0300, André Costa wrote:<br><br>&gt; Now I am working on BCC Cross-compiler in order to get the binaries for<br>&gt; LEON3 (Google SoC 2007).<br><br>Woohoo! :)<br><br>&gt; I changed these lines of Makefile ...
<br>&gt;<br>&gt; CC = sparc-elf-gcc -mv8 -msoft-float<br>&gt; CPP = sparc-elf-gcc -mv8 -msoft-float -E<br><br>I agree libtool is probably not picking up on the change. Try something<br>like CC=&quot;sparc-elf-gcc -mv8 -msoft-float&quot; ./configure --target=sparc-elf
<br>and see if that works better.<br><br>The GNU autotools generally have very poor support for cross-compilation<br>though. It is probably worth just writing a custom makefile for it. Copy<br>the list of relevent files from lib/(*/)Makefile.am and copy the
<br>relevent defines from <a href="http://config.h.in" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">config.h.in</a>. You probably want:<br><br>#define THEORA_DISABLE_ENCODE 1<br><br>I don&#39;t think the library requires any of the others.
<br><br> -r<br><br>&gt; PS: I wasn&#39;t getting to communicate with the LEON in FPGA by serial
<br>&gt; interface, but I discovered the problem. The number code of my FPGA was<br>&gt; slightly different. The difference was just in mapping of pins. When I<br>&gt; changed of FPGA (to a cyclone), I got to run a hello word! For while I am
<br>&gt; using the cyclone, but after I will need to map all the pins.<br></blockquote></div><br><br clear="all"><br>-- <br>André Costa<br>Gerente Técnico<br>Projeto BrazilIP<br>LSC IC-UNICAMP <br><br>Cel: + 55 13 9201 1870
<br><a href="http://www.brazilip.org.br/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://www.brazilip.org.br/</a>