Recent content by spued

  1. S

    Can't Compile On Windows

    You need to print the stdout to file to know what happen on run time.Or you have the serial console to see the error messages.
  2. S

    Tool Chain Header Files

    I can build the library from here. Almost library can build but "libjpeg". http://wiki.open2x.org/open2x/wiki/index.php?title=Libraries
  3. S

    Caanoo / WIZ Howto For Opengl-es 1.1 Lite On The Wiz

    :D I solve the VFP problem. I don't know it is the right way or not. But at least I can compile the GL surface in this thread. From this thread ... I build the toolchain with vfp option, build the libwizGLES then compile the code. My code is do nothing. Just create the surface then flip...
  4. S

    Caanoo / WIZ Howto For Opengl-es 1.1 Lite On The Wiz

    If we can not change the lib so we could change our tools. I try to check the option of toolchains. CODE sunya@ns2:~/arm-openwiz-linux-gnu/bin$ ./arm-openwiz-linux-gnu-g++ -v Using built-in specs. Target: arm-openwiz-linux-gnu Configured with...
  5. S

    How To Redirect Stdout To A File In C++

    Thank you all for distribute. I can make it good now.
  6. S

    Caanoo / WIZ Howto For Opengl-es 1.1 Lite On The Wiz

    Refer to Picodrive. I got the same problem too. CODE /home/sunya/arm-openwiz-linux-gnu/bin/../lib/gcc/arm-openwiz-linux-gnu/4.2.4/../../../../arm-openwiz-linux-gnu/bin/ld: ERROR: ../../Pico/draw_asm.o uses VFP instructions, whereas PicoDrive.gpe does not...
  7. S

    Caanoo / WIZ Howto For Opengl-es 1.1 Lite On The Wiz

    Yes. I got from GP2Xwiz archive. Same as above. Check sum: ab217998d5da3eef0e824ad0ef2de645 libopengles_lite.so
  8. S

    How To Redirect Stdout To A File In C++

    I already try this code. It's not work on my wiz 1.0.0. Here's an example (no error checking included). I've used cout (printf is so C :)). CODE #include <iostream> #include <unistd.h> #include <fcntl.h> using namespace std; int main(int, char**) { int fd = open("log.txt"...
  9. S

    Caanoo / WIZ Howto For Opengl-es 1.1 Lite On The Wiz

    I success to compile the wizGLES lib but there are the problem when linking. CODE /home/sunya/arm-openwiz-linux-gnu/bin/arm-openwiz-linux-gnu-g++ main.cpp -I/home/sunya/arm-openwiz-linux-gnu/include -L/home/sunya/arm-openwiz-linux-gnu/lib -lopengles_lite -lwizGLES -o gltest.gpe...
Back
Top