<div id="reply-content">Try to compile without nestedvm first. &nbsp; After you have a working compiled non nestedvm version, then youll be in a good starting point to review memory.h; otherwise, if you cannot build, you have a missing dependency.&nbsp;</div><div id="reply-content"><br></div><div id="reply-content">So basically, you need to find memory.h and find out if its functionality is duplicated in the code and is not necessary or it is necessary and not included in the build path.</div><div id="reply-content"><br></div><div id="reply-content">I hope this helps.</div>
    <div id="9BDA2FC217284F81BF00FFFF1061ECA0"><div><br></div>-- <br>Michaelt<br><div><br></div></div>
     
    <p style="color: #A0A0A8;">On Sunday, December 16, 2012 at 5:07 AM, nestedvm-request@lists.hcoop.net wrote:</p>
    <blockquote type="cite" style="border-left-style:solid;border-width:1px;margin-left:0px;padding-left:10px;">
        <div id="quoted-message-content"><div><div>Send Nestedvm mailing list submissions to</div><div>        nestedvm@lists.hcoop.net</div><div><br></div><div>To subscribe or unsubscribe via the World Wide Web, visit</div><div>        https://lists.hcoop.net/listinfo/nestedvm</div><div>or, via email, send a message with subject or body 'help' to</div><div>        nestedvm-request@lists.hcoop.net</div><div><br></div><div>You can reach the person managing the list at</div><div>        nestedvm-owner@lists.hcoop.net</div><div><br></div><div>When replying, please edit your Subject line so it is more specific</div><div>than "Re: Contents of Nestedvm digest..."</div><div><br></div><div><br></div><div>Today's Topics:</div><div><br></div><div>   1. memory.h (Pablo Beltran)</div><div>   2. Re: memory.h (Pablo Beltran)</div><div>   3. Re: memory.h (Pablo Beltran)</div><div>   4. Re: memory.h (Pablo Beltran)</div><div><br></div><div><br></div><div>----------------------------------------------------------------------</div><div><br></div><div>Message: 1</div><div>Date: Sun, 16 Dec 2012 03:14:38 +0100</div><div>From: Pablo Beltran &lt;pbeltranl@gmail.com&gt;</div><div>Subject: [Nestedvm] memory.h</div><div>To: nestedvm@lists.hcoop.net</div><div>Message-ID:</div><div>        &lt;CA+kG3h5M=exSjDz16c61Wj1GR5+p=gyy_SbCM9AuUn8A0sLxgg@mail.gmail.com&gt;</div><div>Content-Type: text/plain; charset="iso-8859-1"</div><div><br></div><div>Hi,</div><div><br></div><div>I want to compile the SWFTools project by using the nestedvm compiler. But</div><div>I'm getting problems with the *memory.h* file.</div><div>I've built several 3rd party required libraries (jpeg, freetype, zlib)</div><div>without problems and configured the SWFTools with nestedvm, but when I run</div><div>the *make* command it stops because the memory.h file is missing.</div><div><br></div><div>Well, I found one at the /usr/include, so I added the</div><div>*-I/usr/include*param to the gcc compiler (via Makefile). The missing</div><div>file  is already</div><div>found, but tons of errors are then displayed.</div><div><br></div><div>How can it be resolved? I guess that was not the right way to deal with the</div><div>missing memory.h file...</div><div><br></div><div>Many thanks!</div><div>Pablo.</div><div>-------------- next part --------------</div><div>An HTML attachment was scrubbed...</div><div>URL: http://lists.hcoop.net/pipermail/nestedvm/attachments/20121216/580d7602/attachment-0001.htm </div><div><br></div><div>------------------------------</div><div><br></div><div>Message: 2</div><div>Date: Sun, 16 Dec 2012 13:23:00 +0100</div><div>From: Pablo Beltran &lt;pbeltranl@gmail.com&gt;</div><div>Subject: Re: [Nestedvm] memory.h</div><div>To: nestedvm@lists.hcoop.net</div><div>Message-ID:</div><div>        &lt;CA+kG3h6oLCWMrDB0ukXpbTGkUd6JDP3DiAdKBgvRFojCzz0EPg@mail.gmail.com&gt;</div><div>Content-Type: text/plain; charset="iso-8859-1"</div><div><br></div><div>This is the error message:</div><div><br></div><div>mips-unknown-elf-gcc -c -DHAVE_CONFIG_H    -fPIC -Wimplicit -Wreturn-type</div><div>-Wno-write-strings -Wformat -O -fomit-frame-pointer</div><div>-I/home/pablo/freetype-2.4.10/include -I/home/pablo/jpeg-6b</div><div>-I/home/pablo/zlib-1.2.7 -O3 -mmemcpy -ffunction-sections -fdata-sections</div><div>-falign-functions=512 -fno-rename-registers -fno-schedule-insns</div><div>-fno-delayed-branch -freduce-all-givs modules/swfbits.c -o modules/swfbits.o</div><div>modules/swfbits.c:26:20: memory.h: No such file or directory</div><div>make[1]: *** [modules/swfbits.o] Error 1</div><div><br></div><div>The source code of *swfbits.c*:</div><div><br></div><div>#include &lt;stdlib.h&gt;</div><div>#include &lt;stdio.h&gt;</div><div>*#include &lt;memory.h&gt;*</div><div>#include "../../config.h"</div><div>#ifdef HAVE_ZLIB</div><div>#include &lt;zconf.h&gt;</div><div>#include &lt;zlib.h&gt;</div><div>#endif</div><div>#include &lt;fcntl.h&gt;</div><div>#include &lt;ctype.h&gt;</div><div>...</div><div><br></div><div>While stdlib.h and stdio.h are provided by the nestedvmt:</div><div>/home/pablo/nestedvm/upstream/build/newlib-1.11.0/newlib/libc/include/stdlib.h</div><div>/home/pablo/nestedvm/upstream/build/newlib-1.11.0/newlib/libc/include/stdio.h</div><div><br></div><div>memory.h not:</div><div>/usr/include/memory.h (and others)</div><div><br></div><div>although there is a similar one at:</div><div>/home/pablo/nestedvm/upstream/build/gcc-3.3.6/libstdc++-v3/include/std/*</div><div>std_memory.h*</div><div><br></div><div>Is memory.h not supported? Does memory.h must be replaced by std_memory.h</div><div>or any similar workaround?'</div><div><br></div><div>Many thanks,</div><div>Pablo.</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div>2012/12/16 Pablo Beltran &lt;pbeltranl@gmail.com&gt;</div><div><br></div><blockquote type="cite"><div><div>Hi,</div><div><br></div><div>I want to compile the SWFTools project by using the nestedvm compiler. But</div><div>I'm getting problems with the *memory.h* file.</div><div>I've built several 3rd party required libraries (jpeg, freetype, zlib)</div><div>without problems and configured the SWFTools with nestedvm, but when I run</div><div>the *make* command it stops because the memory.h file is missing.</div><div><br></div><div>Well, I found one at the /usr/include, so I added the *-I/usr/include*param to the gcc compiler (via Makefile). The missing file  is already</div><div>found, but tons of errors are then displayed.</div><div><br></div><div>How can it be resolved? I guess that was not the right way to deal with</div><div>the missing memory.h file...</div><div><br></div><div>Many thanks!</div><div>Pablo.</div></div></blockquote><div>-------------- next part --------------</div><div>An HTML attachment was scrubbed...</div><div>URL: http://lists.hcoop.net/pipermail/nestedvm/attachments/20121216/55b508ab/attachment-0001.htm </div><div><br></div><div>------------------------------</div><div><br></div><div>Message: 3</div><div>Date: Sun, 16 Dec 2012 13:28:19 +0100</div><div>From: Pablo Beltran &lt;pbeltranl@gmail.com&gt;</div><div>Subject: Re: [Nestedvm] memory.h</div><div>To: nestedvm@lists.hcoop.net</div><div>Message-ID:</div><div>        &lt;CA+kG3h4CzR=rW+8-oEa0fYeoBeVvQK0vzJ-j9DFz20TRxgL=og@mail.gmail.com&gt;</div><div>Content-Type: text/plain; charset="iso-8859-1"</div><div><br></div><div>Sorry, the right location of stdlib and stdio seems:</div><div>/home/pablo/nestedvm/*upstream/install/mips-unknown-elf/include*/stdio.h</div><div><br></div><div>Anyway, I don't see a easy way to deal with the memory.h problem.</div><div><br></div><div><br></div><div>2012/12/16 Pablo Beltran &lt;pbeltranl@gmail.com&gt;</div><div><br></div><blockquote type="cite"><div><div>This is the error message:</div><div><br></div><div>mips-unknown-elf-gcc -c -DHAVE_CONFIG_H    -fPIC -Wimplicit -Wreturn-type</div><div>-Wno-write-strings -Wformat -O -fomit-frame-pointer</div><div>-I/home/pablo/freetype-2.4.10/include -I/home/pablo/jpeg-6b</div><div>-I/home/pablo/zlib-1.2.7 -O3 -mmemcpy -ffunction-sections -fdata-sections</div><div>-falign-functions=512 -fno-rename-registers -fno-schedule-insns</div><div>-fno-delayed-branch -freduce-all-givs modules/swfbits.c -o modules/swfbits.o</div><div>modules/swfbits.c:26:20: memory.h: No such file or directory</div><div>make[1]: *** [modules/swfbits.o] Error 1</div><div><br></div><div>The source code of *swfbits.c*:</div><div><br></div><div>#include &lt;stdlib.h&gt;</div><div>#include &lt;stdio.h&gt;</div><div>*#include &lt;memory.h&gt;*</div><div>#include "../../config.h"</div><div>#ifdef HAVE_ZLIB</div><div>#include &lt;zconf.h&gt;</div><div>#include &lt;zlib.h&gt;</div><div>#endif</div><div>#include &lt;fcntl.h&gt;</div><div>#include &lt;ctype.h&gt;</div><div>...</div><div><br></div><div>While stdlib.h and stdio.h are provided by the nestedvmt:</div><div><br></div><div>/home/pablo/nestedvm/upstream/build/newlib-1.11.0/newlib/libc/include/stdlib.h</div><div><br></div><div>/home/pablo/nestedvm/upstream/build/newlib-1.11.0/newlib/libc/include/stdio.h</div><div><br></div><div>memory.h not:</div><div>/usr/include/memory.h (and others)</div><div><br></div><div>although there is a similar one at:</div><div>/home/pablo/nestedvm/upstream/build/gcc-3.3.6/libstdc++-v3/include/std/*</div><div>std_memory.h*</div><div><br></div><div>Is memory.h not supported? Does memory.h must be replaced by std_memory.h</div><div>or any similar workaround?'</div><div><br></div><div>Many thanks,</div><div>Pablo.</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div>2012/12/16 Pablo Beltran &lt;pbeltranl@gmail.com&gt;</div><div><br></div><blockquote type="cite"><div><div>Hi,</div><div><br></div><div>I want to compile the SWFTools project by using the nestedvm compiler.</div><div>But I'm getting problems with the *memory.h* file.</div><div>I've built several 3rd party required libraries (jpeg, freetype, zlib)</div><div>without problems and configured the SWFTools with nestedvm, but when I run</div><div>the *make* command it stops because the memory.h file is missing.</div><div><br></div><div>Well, I found one at the /usr/include, so I added the *-I/usr/include*param to the gcc compiler (via Makefile). The missing file  is already</div><div>found, but tons of errors are then displayed.</div><div><br></div><div>How can it be resolved? I guess that was not the right way to deal with</div><div>the missing memory.h file...</div><div><br></div><div>Many thanks!</div><div>Pablo.</div></div></blockquote></div></blockquote><div>-------------- next part --------------</div><div>An HTML attachment was scrubbed...</div><div>URL: http://lists.hcoop.net/pipermail/nestedvm/attachments/20121216/7b21579d/attachment-0001.htm </div><div><br></div><div>------------------------------</div><div><br></div><div>Message: 4</div><div>Date: Sun, 16 Dec 2012 14:07:29 +0100</div><div>From: Pablo Beltran &lt;pbeltranl@gmail.com&gt;</div><div>Subject: Re: [Nestedvm] memory.h</div><div>To: nestedvm@lists.hcoop.net</div><div>Message-ID:</div><div>        &lt;CA+kG3h4pk1TYiqWJXZYJXDk_OrGWw7JC=zsmFwogq-w3XkEK5A@mail.gmail.com&gt;</div><div>Content-Type: text/plain; charset="iso-8859-1"</div><div><br></div><div>An a similar problem found while trying to compile a 3rd party optional</div><div>giflib library:</div><div><br></div><div>http://sourceforge.net/projects/giflib/</div><div><br></div><div>It requires stdint.h which is not provided by nestedvm :(</div><div><br></div><div><br></div><div>2012/12/16 Pablo Beltran &lt;pbeltranl@gmail.com&gt;</div><div><br></div><blockquote type="cite"><div><div>Sorry, the right location of stdlib and stdio seems:</div><div>/home/pablo/nestedvm/*upstream/install/mips-unknown-elf/include*/stdio.h</div><div><br></div><div>Anyway, I don't see a easy way to deal with the memory.h problem.</div><div><br></div><div><br></div><div>2012/12/16 Pablo Beltran &lt;pbeltranl@gmail.com&gt;</div><div><br></div><blockquote type="cite"><div><div>This is the error message:</div><div><br></div><div>mips-unknown-elf-gcc -c -DHAVE_CONFIG_H    -fPIC -Wimplicit -Wreturn-type</div><div>-Wno-write-strings -Wformat -O -fomit-frame-pointer</div><div>-I/home/pablo/freetype-2.4.10/include -I/home/pablo/jpeg-6b</div><div>-I/home/pablo/zlib-1.2.7 -O3 -mmemcpy -ffunction-sections -fdata-sections</div><div>-falign-functions=512 -fno-rename-registers -fno-schedule-insns</div><div>-fno-delayed-branch -freduce-all-givs modules/swfbits.c -o modules/swfbits.o</div><div>modules/swfbits.c:26:20: memory.h: No such file or directory</div><div>make[1]: *** [modules/swfbits.o] Error 1</div><div><br></div><div>The source code of *swfbits.c*:</div><div><br></div><div>#include &lt;stdlib.h&gt;</div><div>#include &lt;stdio.h&gt;</div><div>*#include &lt;memory.h&gt;*</div><div>#include "../../config.h"</div><div>#ifdef HAVE_ZLIB</div><div>#include &lt;zconf.h&gt;</div><div>#include &lt;zlib.h&gt;</div><div>#endif</div><div>#include &lt;fcntl.h&gt;</div><div>#include &lt;ctype.h&gt;</div><div>...</div><div><br></div><div>While stdlib.h and stdio.h are provided by the nestedvmt:</div><div><br></div><div>/home/pablo/nestedvm/upstream/build/newlib-1.11.0/newlib/libc/include/stdlib.h</div><div><br></div><div>/home/pablo/nestedvm/upstream/build/newlib-1.11.0/newlib/libc/include/stdio.h</div><div><br></div><div>memory.h not:</div><div>/usr/include/memory.h (and others)</div><div><br></div><div>although there is a similar one at:</div><div>/home/pablo/nestedvm/upstream/build/gcc-3.3.6/libstdc++-v3/include/std/*</div><div>std_memory.h*</div><div><br></div><div>Is memory.h not supported? Does memory.h must be replaced by</div><div>std_memory.h or any similar workaround?'</div><div><br></div><div>Many thanks,</div><div>Pablo.</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div>2012/12/16 Pablo Beltran &lt;pbeltranl@gmail.com&gt;</div><div><br></div><blockquote type="cite"><div><div>Hi,</div><div><br></div><div>I want to compile the SWFTools project by using the nestedvm compiler.</div><div>But I'm getting problems with the *memory.h* file.</div><div>I've built several 3rd party required libraries (jpeg, freetype, zlib)</div><div>without problems and configured the SWFTools with nestedvm, but when I run</div><div>the *make* command it stops because the memory.h file is missing.</div><div><br></div><div>Well, I found one at the /usr/include, so I added the *-I/usr/include*param to the gcc compiler (via Makefile). The missing file  is already</div><div>found, but tons of errors are then displayed.</div><div><br></div><div>How can it be resolved? I guess that was not the right way to deal with</div><div>the missing memory.h file...</div><div><br></div><div>Many thanks!</div><div>Pablo.</div></div></blockquote></div></blockquote></div></blockquote><div>-------------- next part --------------</div><div>An HTML attachment was scrubbed...</div><div>URL: http://lists.hcoop.net/pipermail/nestedvm/attachments/20121216/262120a1/attachment.htm </div><div><br></div><div>------------------------------</div><div><br></div><div>_______________________________________________</div><div>Nestedvm mailing list</div><div>Nestedvm@lists.hcoop.net</div><div>https://lists.hcoop.net/listinfo/nestedvm</div><div><br></div><div><br></div><div>End of Nestedvm Digest, Vol 23, Issue 1</div><div>***************************************</div></div></div>
         
         
         
         
    </blockquote>
     
    <div>
        <br>
    </div>