Closed GoogleCodeExporter closed 9 years ago
You need the various libraries shown at
http://code.google.com/p/ftpii/source/browse/
Original comment by joe.goo...@psychlaw.com.au
on 13 Oct 2010 at 4:19
Where do I need to put them?
ftpii says to get source I do this:
svn checkout http://ftpii.googlecode.com/svn/trunk/ ftpii-read-only
Ok if I strip off the trunk/ and do this
svn checkout http://ftpii.googlecode.com/svn/ ftpii-read-only
I get lots more files, but how to build?
Original comment by dashxdr@gmail.com
on 13 Oct 2010 at 4:52
For each one of them (fst, isfs, seeprom etc...) you need to:
cd fst/trunk
make
make install
This will install them into the devkitPro library/include search path so that
ftpii's build can find 'em.
I use this script to build everything:
#!/bin/sh
function build_lib {
cd $1/trunk && make clean && make && make install && make clean && \
cd $1_example && make clean && make && make clean && cd ../../..
}
build_lib iso && \
build_lib fst && \
build_lib wod && \
build_lib isfs && \
build_lib nandimg && \
build_lib otp && \
build_lib seeprom && \
build_lib iospatch
Original comment by joe.goo...@psychlaw.com.au
on 13 Oct 2010 at 5:07
Original issue reported on code.google.com by
dashxdr@gmail.com
on 12 Oct 2010 at 2:21