Ubuntu Question about zilib
Ubuntu Question about zilib
When i was trying to install zlib,i found the first sentence of makefile was like this "PSPSDK=$(shell psp-config --pspsdk-path)".But when i was doing "make install" ,the system suggests that psp-config not found.So i go to terminal ,and input "psp-config".i found it works.I don't know why this happened,and i was Searching for help.Thank you.My system is Ubuntu 8.1.
Re: Ubuntu Question about zilib
You haven't set up the path correctly :)jesil wrote:When i was trying to install zlib,i found the first sentence of makefile was like this "PSPSDK=$(shell psp-config --pspsdk-path)".But when i was doing "make install" ,the system suggests that psp-config not found.So i go to terminal ,and input "psp-config".i found it works.I don't know why this happened,and i was Searching for help.Thank you.My system is Ubuntu 8.1.
## Set up the environment.
gedit ~/.bashrc
## Add these lines to the end of the file.
export PSPDEV="/usr/local/pspdev"
export PSPSDK="$PSPDEV/psp/sdk"
export PATH="$PATH:$PSPDEV/bin:$PSPSDK/bin"
these both compile file for me, there's something wrong on your end :)jesil wrote:Thank you for your replying.ButYou haven't set up the path correctly :)
I have set up the path before.If i run other makefiles,they works.The other makefiles also included "PSPSDK=$(shell psp-config --pspsdk-path)".This only happened in zlib and libpng's makefile.