Install subversion thenexactly like it says
Cloudy
I've installed a build of linux and I'm running things just fine. However, whenever I download the latest version of psptoolchain and try to install it, I get this error:
akreeger@ubuntu-ak:~$ cd psptoolchain
akreeger@ubuntu-ak:~/psptoolchain$ chmod a+x ./toolchain.sh
akreeger@ubuntu-ak:~/psptoolchain$ ./toolchain.sh
ERROR: Please make sure you have 'subversion (svn)' installed.
akreeger@ubuntu-ak:~/psptoolchain$
I know this seems like a novice mistake because it is and I'm not sure what to do. Any help would be appreciated.
Install subversion thenexactly like it says
Cloudy
It would help to know what that even was. Links anyone?
Subversion is the code repository used to store all of the SDK files. You need 'svn' the subversion client in order for the the toolchain script to check those files out.
Since it appears you are running Ubuntu, there is a utility called apt which you use to install things...run the following from the command line to install...it will prompt you for your password...
sudo apt-get install subversion
I'm assuming the package is named 'subversion', it might be 'svn'. The 'sudo' lets the command run as the superuser so it can install the program. The rest of the command is using apt-get to install subversion...
There is a graphical frontend for apt also included with Ubuntu(Synaptic?) that should be in the menu somewhere. But since you're already in a terminal the command line words fine...
Ah, thank you, right now I'm on a University computer and I will be sure to test this out as soon as I get back to my workstation. I appreciate your help. Keep you posted.
hope you get it working,I'm thinking about trying another install on my slackware box
Hey, it's working! It asked also to make sure I had 'automake' installed and I did the same thing for 'subversion'. Thanks a whole lot Coder_TimT, you're a friggin lifesaver!
Ok, so now I have another problem:
I run "./toolchain.sh" and the bash runs for about 20 minutes until I get this error:
...
A pspsdk/aclocal/ac_doxygen.m4
A pspsdk/aclocal/pspdev.m4
A pspsdk/aclocal/version.m4
Exported revision 2048.
creating cache ./config.cache
checking host system type... i686-pc-linux-gnulibc1
checking target system type... mipsallegrexel-psp-elf
checking build system type... i686-pc-linux-gnulibc1
checking for a BSD compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for gcc... gcc
checking whether the C compiler (gcc ) works... no
configure: error: installation or configuration problem: C compiler cannot create executables.
ERROR CONFIGURING BINUTILS
akreeger@ubuntu-ak:~/psptoolchain$
Where do I go from here?
"Binutils" contains the linker and assembler executables, which are seperate from the compiler. I would guess those didn't get installed...so try an 'apt-get install binutils'.
checking for gcc... gcc
checking whether the C compiler (gcc ) works... no
configure: error: installation or configuration problem: C compiler cannot create executables.
ERROR CONFIGURING BINUTILS
akreeger@ubuntu-ak:~/psptoolchain$ sudo apt-get install binutils
Reading package lists... Done
Building dependency tree
Reading state information... Done
binutils is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
akreeger@ubuntu-ak:~/psptoolchain$
I get this result and then I even attempt to run "./toolchain.sh" again with the same result: "ERROR CONFIGURING BINUTILS"
Suggestions?
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks