Page 1 of 1

Setting path for ps2DevEnvironment

Posted: Fri Apr 30, 2004 9:18 am
by EugeneE3RD
Well, I just installed the ps2DevEnvironment (I've had this on my PC's HDD for almost one yr). This program does install some paths in my autoexec.bat but what I need to do is set the path so that when I type in the file name such as make then it would run. Here is the current path from autoexec.bat:

SET PS2DEV=c:/ps2dev

SET PS2LIB=c:/ps2dev/PS2LIB

SET PS2GCC=c:/ps2dev/GCC

SET C_PATH=%PS2LIB%/common/include;%PS2LIB%/iop/include;%PS2GCC%/iop/include;%PS2GCC%/iop/lib/gcc-lib/iop/2.8.1-ps2dev/include;%PS2GCC%/iop/iop/include

SET PS2_CPATH=%PS2LIB%/common/include;%PS2LIB%/ee/include;%PS2GCC%/ee/include;%PS2GCC%/ee/lib/gcc-lib/mips64r5900-sce-elf/2.9-ee-991111b/include;%PS2GCC%/ee/mips64r5900-sce-elf/include

SET PATH=%PATH%;

SET PATH=%PATH%;

SET PATH=%PATH%;

SET PATH=%PATH%;

SET PATH=%PATH%;

What I want to is set up the path so that when I type make, ee-gcc, iop-gcc, et al, so that I can run these programs from anywhere on my PC.

Posted: Fri Apr 30, 2004 7:17 pm
by t0mb0la
My path is set as:

SET PATH=%PATH%;%PS2GCC%/share;%PS2GCC%/ee/bin;%PS2GCC%/iop/bin;%PS2GCC%/iop/lib/gcc-lib/iop/2.8.1-ps2dev;%PS2GCC%/iop/iop/bin;

Hope this helps.

Posted: Fri Apr 30, 2004 9:27 pm
by EugeneE3RD
t0mb0la wrote:My path is set as:

SET PATH=%PATH%;%PS2GCC%/share;%PS2GCC%/ee/bin;%PS2GCC%/iop/bin;%PS2GCC%/iop/lib/gcc-lib/iop/2.8.1-ps2dev;%PS2GCC%/iop/iop/bin;

Hope this helps.
Thanks. I tried to path that you posted & it works like a charm.