psptoolchain 20051202
-
- Posts: 5
- Joined: Fri Jul 31, 2009 12:41 pm
psptoolchain 20051202
hey is it still possible to get the psptoolchain 20051202 from anywhere? the other toolchains arent really working for me.
-
- Posts: 91
- Joined: Sun Feb 22, 2009 8:32 am
- Location: Melbourne Australia ZOMG
im not sure, if your on windows download here or on unix, svn the new sdk[/url]
Last edited by slasher2661996 on Fri Jul 31, 2009 1:57 pm, edited 1 time in total.
-
- Posts: 91
- Joined: Sun Feb 22, 2009 8:32 am
- Location: Melbourne Australia ZOMG
yes, when im on vista (30%) or i use the native sdk on ubuntu (the other 70%)
It set's environmental variables, so all you have todo is type "make" "make clean" and all that from the command prompt.
If you don't know how to set it up, i would advise you to have alook at my tutorials at QJ[/url]
It set's environmental variables, so all you have todo is type "make" "make clean" and all that from the command prompt.
If you don't know how to set it up, i would advise you to have alook at my tutorials at QJ[/url]
The SDK and toolchain are completely different things.
You'll have to find older versions from somewhere else.
The ps2dev.org SVN doesn't want to checkout anything but the latest revision.
If a file was deleted in the latest revision, its not possible to checkout an older revision of the file. Or atleast my SVN client is unable to from svn.ps2dev.org.
You'll have to find older versions from somewhere else.
The ps2dev.org SVN doesn't want to checkout anything but the latest revision.
If a file was deleted in the latest revision, its not possible to checkout an older revision of the file. Or atleast my SVN client is unable to from svn.ps2dev.org.
-
- Posts: 5
- Joined: Fri Jul 31, 2009 12:41 pm
-
- Posts: 388
- Joined: Tue Aug 12, 2008 12:46 am
How can you have/use a toolchain without the sdk unless you were going to program in plain mips assembly?theswiffervac wrote:ok thanks thats what im looking for. i had never heard of the sdk thing so i was clueless lol
If you got windows, check out the pre-compile toolchain here,w
PSHN - Playstation Hacking Network
PSX/PS1 - HACK - Game Shark
PS2 - HACK - Swap
PSP - HACK - Pandora
PS3 - ?
PSX/PS1 - HACK - Game Shark
PS2 - HACK - Swap
PSP - HACK - Pandora
PS3 - ?
-
- Posts: 5
- Joined: Fri Jul 31, 2009 12:41 pm
Seems to work fine here:Torch wrote:Do you know why I can't checkout older revisions? Or specifically stuff that's been deleted in a later revision.jbit wrote:Maybe if you described why the new toolchains "arent really working" for you then you could get those projects fixed, rather than relying on an ancient toolchain......
Code: Select all
r2428 | oopo | 2008-08-26 17:18:44 +0200 (Tue, 26 Aug 2008) | 2 lines
Changed paths:
D /trunk/psptoolchain/patches/psplinkusb.patch
M /trunk/psptoolchain/scripts/009-psplinkusb.sh
Code: Select all
[jbit@miku]~/svntest$ svn co svn://svn.ps2dev.org/psp/trunk/psptoolchain/ psptoolchain
(trimmed)
[jbit@miku]~/svntest$ cd psptoolchain
[jbit@miku]~/svntest/psptoolchain$ ls -l patches/psplinkusb.patch
ls: cannot access patches/psplinkusb.patch: No such file or directory
[jbit@miku]~/svntest/psptoolchain$ svn update -r 2427
(trimmed)
A patches/psplinkusb.patch
(trimmed)
[jbit@miku]~/svntest/psptoolchain$ ls -l patches/psplinkusb.patch
-rw-r--r-- 1 jbit staff 547 2009-08-02 14:25 patches/psplinkusb.patch
I was trying to checkout libAac from revision 1088 which was deleted in 1089 but it keeps saying it doesn't exist. Can't seem to copy and past from this stupid window... I can checkout previous revisions of existing stuff though.
I found a mirror of the repository somewhere and the checkout of the old revision's libAac worked fine there.
I found a mirror of the repository somewhere and the checkout of the old revision's libAac worked fine there.
-
- Posts: 5
- Joined: Fri Jul 31, 2009 12:41 pm
when i execute ./toolchain.sh it installs that stuff for a while but then i get this:
"1321699213 [main] perl 4460 C:\Cygwin\bin\perl.exe: *** fatal error - unable to remap C:\cygwin\lib
perl5\5.10\i686-cygwin\auto\file\Glob.dll to same address as parent (0x1260000) !=0x1B70000 1321717258 [main] perl 3568 fork: child 4460 - died waiting for dll loading, error no 11"
"1321699213 [main] perl 4460 C:\Cygwin\bin\perl.exe: *** fatal error - unable to remap C:\cygwin\lib
perl5\5.10\i686-cygwin\auto\file\Glob.dll to same address as parent (0x1260000) !=0x1B70000 1321717258 [main] perl 3568 fork: child 4460 - died waiting for dll loading, error no 11"
-
- Posts: 91
- Joined: Sun Feb 22, 2009 8:32 am
- Location: Melbourne Australia ZOMG
The only thing that needs to be done in Cygwin is edit your cygwin.bat like this:
The stock toolchain can be checked out and compiled directly (install Cygwin with the devel and wget packages).
I find it easier because basically everything can simply be checked out and compiled instantly without Windows specific workarounds.
Code: Select all
@echo off
C:
chdir C:\cygwin\bin
set PSPDEV=/usr/local/pspdev
set path=%path%;C:/cygwin/usr/local/pspdev/bin;C:/cygwin/bin
bash --login -i
I find it easier because basically everything can simply be checked out and compiled instantly without Windows specific workarounds.
It works fine here:Torch wrote:I was trying to checkout libAac from revision 1088 which was deleted in 1089 but it keeps saying it doesn't exist. Can't seem to copy and past from this stupid window... I can checkout previous revisions of existing stuff though.
Code: Select all
svn co -r1088 svn://svn.ps2dev.org/psp/trunk/libAac@1088
No I didn't write @1088. I thought thats what -r 1088 was for. Other stuff checks out the old revision with just -r 1088.jimparis wrote: It works fine here:I assume you forgot the "@1088" at the end.Code: Select all
svn co -r1088 svn://svn.ps2dev.org/psp/trunk/libAac@1088
You do need the @1088. Check the section Resurrecting Deleted Items in the Subversion book, as well as the difference between Peg and Operative Revisions.