![]() |
| Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact |
| ||||||
This is a discussion on Little help within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; Ok i have cygwin and toolchain and i finished a small C++ project. Now im just lost on how to ...
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 |
![]() |
Ok i have cygwin and toolchain and i finished a small C++ project.
Now im just lost on how to compile it to and eboot to run on 1.5 Who ever helps me will get a small donation
__________________
[U][URL="http://www.speedtest.net"][/URL][URL="http://www.speedtest.net/"][IMG]http://img459.imageshack.us/img459/5021/darkhuntercopyrz9jx4.png[/IMG][/URL][/U] |
|
|
|
|
|
#2 |
![]() ![]() Developer
|
type 'make' in cygwin. Now gimme dat!
__________________
Hardware Alarm Suite II v2.7 bld 1727 (1730 Latest)|Academic Aid 6.R769 w/ Motion|LocoRoco Motion Plugin|XmbController 1.61|More(32) TweakDISPLAY(NOW OUT!) | PaintOnXMB v1
|
|
|
|
|
|
#4 | |
![]() |
Quote:
__________________
[U][URL="http://www.speedtest.net"][/URL][URL="http://www.speedtest.net/"][IMG]http://img459.imageshack.us/img459/5021/darkhuntercopyrz9jx4.png[/IMG][/URL][/U] |
|
|
|
|
|
|
#5 |
![]() ![]() Developer
|
type 'cd dir' to navg to ur proj folder. then 'make kxploit'. its easier alt.
__________________
Hardware Alarm Suite II v2.7 bld 1727 (1730 Latest)|Academic Aid 6.R769 w/ Motion|LocoRoco Motion Plugin|XmbController 1.61|More(32) TweakDISPLAY(NOW OUT!) | PaintOnXMB v1
|
|
|
|
|
|
#6 | |
![]() |
Quote:
my project is at c:/mypsp/test.c++
__________________
[U][URL="http://www.speedtest.net"][/URL][URL="http://www.speedtest.net/"][IMG]http://img459.imageshack.us/img459/5021/darkhuntercopyrz9jx4.png[/IMG][/URL][/U] |
|
|
|
|
|
|
#7 |
![]() |
First off, it should be 'test.cpp'.
Then you need to make a makefile. Code:
TARGET = test OBJS = ./test.o INCDIR = CFLAGS = -g -G0 -Wall CXXFLAGS = -g $(CFLAGS) -fno-exceptions -fno-rtti -Wpointer-arith ASFLAGS = -c $(CFLAGS) LIBDIR = LDFLAGS = #-lstdc++ for C++ LIBS= -lstdc++ EXTRA_TARGETS = EBOOT.PBP PSP_EBOOT_TITLE = teste PSPSDK=$(shell psp-config --pspsdk-path) include $(PSPSDK)/lib/build.mak In cygwin, type 'cd C:/mypsp/' then type 'make kxploit' and you should be good. If it forced you to use an extension for makefile, type 'make -f makefile.extension_type kxploit' (where .extension_type is the forced extension), instead of 'make kxploit'. I don't want points.
__________________
YEAH! [center][COLOR="DimGray"][SIZE="2"][FONT="Times New Roman"]Julius Parishy [[URL="http://jparishy.com"]Homepage[/URL]][/FONT][/COLOR] Affiliates: [url=http://xfacter.jparishy.com/]Xfacter[/url] | [url=http://flatmush.jparishy.com/]Flatmush[/url] | [url=http://yaustar.jparishy.com/]Yaustar[/url] [url=http://jparishy.com/wp/source-code/]Soure Code[/url] [/center] [/size] |
|
|
|
![]() |
| Thread Tools | |
|
|