Libito

Discuss the development of software, tools, libraries and anything else that helps make ps2dev happen.

Moderators: cheriff, Herben

Post Reply
Apollo
Posts: 10
Joined: Sun Mar 05, 2006 3:19 am

Libito

Post by Apollo »

When I try to build libito I get the following error. I have the c++ compiler from cygwin so what should I do?

Code: Select all

$ make
Building libito 1.0.0
make -C source
make[1]: Entering directory `/usr/local/ps2dev/libito/source'
mkdir obj/
ee-g++ -D_EE -O2 -c -Wall -fno-rtti -fno-builtin -ffreestanding -fno-exceptions
-fsingle-precision-constant -ansi -pedantic -Wno-long-long -I/usr/local/ps2dev/l
ibito/include -I/usr/local/ps2dev/libito/samples/common -I/usr/local/ps2dev/ps2s
dk/ee/include -I/usr/local/ps2dev/ps2sdk/common/include  -DF_PureVirtual Ito.cpp
 -o obj/Ito_PureVirtual.o
make[1]: ee-g++: Command not found
make[1]: *** [obj/Ito_PureVirtual.o] Error 127
make[1]: Leaving directory `/usr/local/ps2dev/libito/source'
make: *** [build-ito] Error 2
Last edited by Apollo on Mon Mar 13, 2006 1:51 am, edited 1 time in total.
User avatar
Drakonite
Site Admin
Posts: 990
Joined: Sat Jan 17, 2004 1:30 am
Contact:

Post by Drakonite »

Obvious questions -- did you build the ps2 toolchain? Did you add the path information liek you were supposed to?
Shoot Pixels Not People!
Makeshift Development
Apollo
Posts: 10
Joined: Sun Mar 05, 2006 3:19 am

Post by Apollo »

Yes. This is my bash.

Code: Select all

# base-files version 3.7-1

# WARNING
#
# IF THIS bash IS MODIFIED IT WILL NOT BE UPDATED BY THE CYGWIN
# SETUP PROGRAM.  IT BECOMES YOUR RESPONSIBILITY.
#
# The latest version as installed by the Cygwin Setup program can
# always be found at /etc/defaults/etc/bash.bashrc

# System-wide .bashrc file
## PS2DEV SETTINGS
export PS2DEV="/usr/local/ps2dev"
export PS2SDK="$PS2DEV/ps2sdk"
export PATH="$PATH:$PS2DEV/bin:$PS2DEV/ee/bin:$PS2DEV/iop/bin:$PS2DEV/dvp/bin:$PS2SDK/bin"
export PS2LIB="$PS2SDK/ps2lib"
export GSKIT="$PS2SDK/gsKit"
export LIBITO="$PS2DEV/libito"
User avatar
Drakonite
Site Admin
Posts: 990
Joined: Sat Jan 17, 2004 1:30 am
Contact:

Post by Drakonite »

And when you check, ee-g++ does exist then?
Shoot Pixels Not People!
Makeshift Development
Post Reply