Search found 11 matches

by Neo-Rio
Fri Dec 12, 2008 7:12 pm
Forum: PSP Development
Topic: psplibraries/pspirkeyb, notbuilding
Replies: 1
Views: 991

psplibraries/pspirkeyb, notbuilding

an error when trying to compile pspirkeyb on Ubuntu 8.10
main.c:12:22: error: kubridge.h: No such file or directory
Seems like something is missing from the svn
by Neo-Rio
Fri Dec 12, 2008 7:03 pm
Forum: PSP Development
Topic: psplibraries/freetype, not building
Replies: 3
Views: 1563

OK, here's the problem There should be the file config.guess in the freetype/builds/unix directory. config.guess is used to find the build type (e.g. i686-pc-linux-gnu) when you haven't specified it in the configure options. Fortunately this file is as standard where the GNU build environment exists...
by Neo-Rio
Fri Dec 12, 2008 6:47 pm
Forum: PSP Development
Topic: psplibraries/freetype, not building
Replies: 3
Views: 1563

you have to read the README.PSP You're obviously compiling for unix :) Read that (and followed its instructions to the letter), but that's not the point. The automated script (which should work automatically) is bombing out on me. And since this is Ubuntu, then naturally build/unix is being used.
by Neo-Rio
Fri Dec 12, 2008 5:06 pm
Forum: PSP Development
Topic: psplibraries/freetype, not building
Replies: 3
Views: 1563

psplibraries/freetype, not building

Using Ubuntu 8.10 After a successful compile of the toolchain, I'm making an attempt to build the libraries I'm getting this as I move to build freetype:- checking build system type... /bin/bash: ./config.guess: No such file or directory configure error: cannot guess build type; you must specify one...
by Neo-Rio
Tue Jul 08, 2008 7:28 pm
Forum: PSP Development
Topic: Issues porting libraries for PSP development
Replies: 14
Views: 4439

You might want to tweak your zzlib scirpt. It didn't svn the sources before it attempted to build for me (on a completely new install), so we end up with can't cd to zziplib ...because the script looks for the existance of a zlib directory in "build", and not zziplib. (and since zlib alrea...
by Neo-Rio
Tue Jul 08, 2008 2:10 pm
Forum: PSP Development
Topic: Issues porting libraries for PSP development
Replies: 14
Views: 4439

Great, I'll try that too.

I was having problems installing the libraries in Ubuntu because of file permissions. (I used sudo to build the psptoolchain and libraries), so maybe your script will sort this out. I'll let you know how it goes.
by Neo-Rio
Tue Jul 08, 2008 1:47 pm
Forum: PSP Development
Topic: Issues porting libraries for PSP development
Replies: 14
Views: 4439

Cheers for that. I'll try it out!
by Neo-Rio
Tue Jul 08, 2008 12:18 pm
Forum: PSP Development
Topic: Issues porting libraries for PSP development
Replies: 14
Views: 4439

I've added the stuff to config.sub in zziplib in the repository. I then configured it with this: LDFLAGS="-L$(psp-config --pspsdk-path)/lib -lc -lpspuser" ./configure --host psp --prefix=$(psp-config --psp-prefix) This is the same configure line that I used...
by Neo-Rio
Mon Jul 07, 2008 6:34 pm
Forum: PSP Development
Topic: Issues porting libraries for PSP development
Replies: 14
Views: 4439

yes, but that doesn't solve my problem. Autoconf on 8.04 Ubuntu is 2.61 I ran autoreconf on the zziplib source directory and it made a few changes. However it still refuses to configure correctly for building for the PSP. I'm now using the latest psp2dev revision as well I copied across the config.s...
by Neo-Rio
Thu Jul 03, 2008 7:27 pm
Forum: PSP Development
Topic: Issues porting libraries for PSP development
Replies: 14
Views: 4439

autotools-dev is already installed (I have tried on both Debian and Ubuntu) the configure looks for aclocal in the pspdev directory (as well as pkgconfig for that matter) Thing is, there's no aclocal in there, but there IS an aclocal.m4 and an acinclude.m4 in the zziplib directory Anyone got zziplib...
by Neo-Rio
Thu Jul 03, 2008 5:38 pm
Forum: PSP Development
Topic: Issues porting libraries for PSP development
Replies: 14
Views: 4439

Issues porting libraries for PSP development

Hi everyone, I'm trying to build a PSP dev/build environment on Ubuntu So far I have managed to successfully build the psptoolchain (from trunk/psptoolchain) as well as all the libraries from trunk/psplibraries. Now I have turned my attention to getting some of the other libraries to build and I am ...