Search found 19 matches

by paulotex
Fri Jan 02, 2009 7:32 am
Forum: PSP Development
Topic: Watch <Eagle Eye > on PSP
Replies: 1
Views: 1242

Spam? Advertise plug?

Hi. I think the above post is a plain advertise plug: 1. It is not related to the forum. 2. It is the only post by the user. 3. Almost no mention of PSP on the post. 4. The relevant application is commercial. 5. On the same day, a similar post was made on another psp forum: http://www.pspmod.com/for...
by paulotex
Thu Oct 30, 2008 11:50 pm
Forum: PSP Development
Topic: pthreads
Replies: 24
Views: 12521

Hi Rex_VF5. Have a look in config.log, it will tell you why it failed. I compiled djvu, and this lib needed "-lpspuser" to pass the configure tests, so I had to fix "configure.ac". Besides, I also had to point it to the correct pthreads lib. So my configure command was: CXXFLAGS=...
by paulotex
Fri Oct 03, 2008 12:15 am
Forum: PSP Development
Topic: Exception - Syscall: can't find what I'm doing wrong :(
Replies: 2
Views: 1158

Check heap size

I'm answering my own post: the problem that heap size was too small. With

Code: Select all

PSP_HEAP_SIZE_KB&#40;2048&#41;;
everything is fine.
by paulotex
Thu Oct 02, 2008 6:19 pm
Forum: PSP Development
Topic: Exception - Syscall: can't find what I'm doing wrong :(
Replies: 2
Views: 1158

Exception - Syscall: can't find what I'm doing wrong :(

Hi. I'm debugging a homebrew, and I'm getting this error when I run it with linkusb: host0&#58;/> ./bookr.prx Load/Start host0&#58;/bookr.prx UID&#58; 0x04582D35 Name&#58; "Bookr" host0&#58;/> Exception - Syscall Thread ID - 0x0457A841 Th Name - user_main Module ID - 0x...
by paulotex
Thu Sep 25, 2008 4:16 pm
Forum: PSP Development
Topic: psplinkusb under macosx: can't connect
Replies: 4
Views: 1531

a_noob wrote:make sure u installed this libusb http://www.ellert.se/twain-sane/
That was the solution, thanks! I was using a libusb compiled by me. Don't know why it was not working, but the version you pointed to works fine. Thanks a lot!
by paulotex
Thu Sep 25, 2008 5:28 am
Forum: PSP Development
Topic: psplinkusb under macosx: can't connect
Replies: 4
Views: 1531

Thanks for answering so fast! I'm not sure what you mean, though. If you mean to use the option, like:
usbhostfs_pc -g
than it didn't work, got the same behaviour :(

Any more ideas?
by paulotex
Wed Sep 24, 2008 8:36 pm
Forum: PSP Development
Topic: psplinkusb under macosx: can't connect
Replies: 4
Views: 1531

psplinkusb under macosx: can't connect

Hi: I'm having problems using psplinkusb under macosx. The program ./usbhostfs_pc -vv says: $ ./usbhostfs_pc -vvv USBHostFS &#40;c&#41; TyRaNiD 2k6 Built Sep 24 2008 11&#58;16&#58;14 - $Revision&#58; 2368 $ Root directory&#58; /Volumes/Extra/Users/paulo/Documents/PSP/Devel/ps...
by paulotex
Tue Sep 23, 2008 6:29 pm
Forum: PSP Development
Topic: autoconf fails linking in C++
Replies: 2
Views: 1062

sedrik wrote:add

Code: Select all

LIBS=-lstdc++
to your Makefile
That was the solution, thanks! I did try it before, but not in the correct order. It should go before -lc, and I didn't try it. I knew it had to be something silly. Thanks again!
by paulotex
Tue Sep 23, 2008 4:16 am
Forum: PSP Development
Topic: autoconf fails linking in C++
Replies: 2
Views: 1062

autoconf fails linking in C++

This is silly, but I don't know where to look further to solve it: I'm trying to compile an autotools project in C++ (djvulibre) and lots of tests are failing because linking fails. For example, looking for -lm: $ CXXFLAGS="-I`psp-config -p`/include -I`psp-config -P`/include -G0 -fno-rtti"...
by paulotex
Mon Sep 22, 2008 5:47 pm
Forum: PSP Development
Topic: pthreads
Replies: 24
Views: 12521

Yup. Fix committed to SVN trunk. It works now, thanks. I had to add -lpspsdk, but I guess that is normal. Two other minor issues though: * I noticed that "make install" works partially for the PSP. pthreads.h is not installed so I copied it manually. Perhaps you can add that too? * I had ...
by paulotex
Mon Sep 22, 2008 1:58 am
Forum: PSP Development
Topic: pthreads
Replies: 24
Views: 12521

Does it work in C++?

Hi. I'm trying to compile an autotool project that needs pthreads and I was hoping that pthreads-emb could be a solution. The project uses g++ instead of gcc, and linking fails. I've reduced the problem to the conftest.cpp file: #include <pthread.h> int main &#40;&#41; &#123; pthread_t t...
by paulotex
Sun Sep 21, 2008 11:14 pm
Forum: PSP Development
Topic: canonical libtiff problems
Replies: 4
Views: 1605

Adding -G0 to the CFLAGS should remove the __ctype_ptr warnings. duh! Thanks! This is everywhere to be found, I was so obsessed with other errors that I overlooked this. With this flag the compilation of the tools advance quite well until: Making all in iptcutil if psp-gcc -DHAVE_CONFIG_H -I. -I. -...
by paulotex
Sun Sep 21, 2008 9:27 pm
Forum: PSP Development
Topic: canonical libtiff problems
Replies: 4
Views: 1605

Summary

Here's the summary, in case any one is interested. This can also be helpfull for other autotools projects: * Edit config.sub and add the mipsallegrex-psp target. * Edit ltmain.sh and fix version_type. This fix might break the configure on other systems. * Edit configure.ac and make sure LIBS has &qu...
by paulotex
Sun Sep 21, 2008 9:00 pm
Forum: PSP Development
Topic: canonical libtiff problems
Replies: 4
Views: 1605

Solved!

Sorry to answer my own post, but I solved the problem. In configure.ac, after checking for the fundamental libs (in libtiff, it's just libc and libm), just add: dnl For PSPSDK, Make sure we add "-lc -lpspuser" at the end case "$target" in *-psp-*&#41; LIBS="$LIBS -lc -lp...
by paulotex
Sun Sep 21, 2008 6:41 pm
Forum: PSP Development
Topic: canonical libtiff problems
Replies: 4
Views: 1605

canonical libtiff problems

I've been struggling to compile libtiff with no success for the last 24h. Perhaps someone can help me with it. I think it involves some autoconf magic. Here it goes: * First I got the source from libtiff.org: 3.8.2 * Then I did the usuall config/config.sub patch to add the psp allegrex. Ran autoconf...
by paulotex
Sun Sep 21, 2008 6:13 pm
Forum: PSP Development
Topic: where's libtiff?
Replies: 3
Views: 1309

http://www.libtiff.org/ Ok, ok, that's not what I meant :) I've been struggling to compile _that_ libtiff for the last 24h with no success. Instead of posting my problems, I wanted to make sure first that there's no libtiff already patched for the PSP available. So with your answer, I feel I have g...
by paulotex
Sun Sep 21, 2008 6:03 pm
Forum: PSP Development
Topic: where's libtiff?
Replies: 3
Views: 1309

where's libtiff?

Sorry if this is too newbie, but I can't find libtiff in the SDK. "svn list" doesn't show anything. Is it available? Thanks.
by paulotex
Sun Sep 21, 2008 1:41 am
Forum: PSP Development
Topic: Cracking the PSP OFW without pandora
Replies: 91
Views: 35605

new ta-090 apparently can be pandorized

Hi. Just to complete this thread (slightly off-topic): I just found this announcement of a TA-090 that can be Pandorized: http://psp.tgbus.com/yjzb/200809/20080918093811.shtml Google engrish translation: http://translate.google.com/translate?u=http%3A%2F%2Fpsp.tgbus.com%2Fyjzb%2F200809%2F20080918093...
by paulotex
Sun Jan 20, 2008 9:49 pm
Forum: PSP Development
Topic: A new port of uClinux on PSP (with accessibility to ms0)
Replies: 284
Views: 212800

pspboot 0.22 works on psp slim

I want to report that the prebuilt pspboot 0.22 + kernel work on my psp slim (PSP-2004-IS). (However, Danzel's port didn't.)

Thanks for the great work!