Search found 19 matches
- Fri Jan 02, 2009 7:32 am
- Forum: PSP Development
- Topic: Watch <Eagle Eye > on PSP
- Replies: 1
- Views: 1348
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...
- Thu Oct 30, 2008 11:50 pm
- Forum: PSP Development
- Topic: pthreads
- Replies: 24
- Views: 17191
- Fri Oct 03, 2008 12:15 am
- Forum: PSP Development
- Topic: Exception - Syscall: can't find what I'm doing wrong :(
- Replies: 2
- Views: 1329
Check heap size
I'm answering my own post: the problem that heap size was too small. Witheverything is fine.
Code: Select all
PSP_HEAP_SIZE_KB(2048);
- Thu Oct 02, 2008 6:19 pm
- Forum: PSP Development
- Topic: Exception - Syscall: can't find what I'm doing wrong :(
- Replies: 2
- Views: 1329
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:/> ./bookr.prx Load/Start host0:/bookr.prx UID: 0x04582D35 Name: "Bookr" host0:/> Exception - Syscall Thread ID - 0x0457A841 Th Name - user_main Module ID - 0x...
- Thu Sep 25, 2008 4:16 pm
- Forum: PSP Development
- Topic: psplinkusb under macosx: can't connect
- Replies: 4
- Views: 1747
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!a_noob wrote:make sure u installed this libusb http://www.ellert.se/twain-sane/
- Thu Sep 25, 2008 5:28 am
- Forum: PSP Development
- Topic: psplinkusb under macosx: can't connect
- Replies: 4
- Views: 1747
- Wed Sep 24, 2008 8:36 pm
- Forum: PSP Development
- Topic: psplinkusb under macosx: can't connect
- Replies: 4
- Views: 1747
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 (c) TyRaNiD 2k6 Built Sep 24 2008 11:16:14 - $Revision: 2368 $ Root directory: /Volumes/Extra/Users/paulo/Documents/PSP/Devel/ps...
- Tue Sep 23, 2008 6:29 pm
- Forum: PSP Development
- Topic: autoconf fails linking in C++
- Replies: 2
- Views: 1208
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!sedrik wrote:addto your MakefileCode: Select all
LIBS=-lstdc++
- Tue Sep 23, 2008 4:16 am
- Forum: PSP Development
- Topic: autoconf fails linking in C++
- Replies: 2
- Views: 1208
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"...
- Mon Sep 22, 2008 5:47 pm
- Forum: PSP Development
- Topic: pthreads
- Replies: 24
- Views: 17191
- Mon Sep 22, 2008 1:58 am
- Forum: PSP Development
- Topic: pthreads
- Replies: 24
- Views: 17191
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 () { pthread_t t...
- Sun Sep 21, 2008 11:14 pm
- Forum: PSP Development
- Topic: canonical libtiff problems
- Replies: 4
- Views: 1815
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. -...
- Sun Sep 21, 2008 9:27 pm
- Forum: PSP Development
- Topic: canonical libtiff problems
- Replies: 4
- Views: 1815
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...
- Sun Sep 21, 2008 9:00 pm
- Forum: PSP Development
- Topic: canonical libtiff problems
- Replies: 4
- Views: 1815
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-*) LIBS="$LIBS -lc -lp...
- Sun Sep 21, 2008 6:41 pm
- Forum: PSP Development
- Topic: canonical libtiff problems
- Replies: 4
- Views: 1815
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...
- Sun Sep 21, 2008 6:13 pm
- Forum: PSP Development
- Topic: where's libtiff?
- Replies: 3
- Views: 1558
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...
- Sun Sep 21, 2008 6:03 pm
- Forum: PSP Development
- Topic: where's libtiff?
- Replies: 3
- Views: 1558
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.
- Sun Sep 21, 2008 1:41 am
- Forum: PSP Development
- Topic: Cracking the PSP OFW without pandora
- Replies: 91
- Views: 53009
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...
- 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: 295144
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!
Thanks for the great work!