#147341 - tempest - Wed Dec 19, 2007 12:34 am
Hello, tonight I've decided to give devkitARM r21 a shot under my Linux box (Ubuntu 7.10 - Gutsy); being accustomed to Windows' "let-me-do-all-the-work" installer I'm having some troubles to setup the toolchain.
This has been my progress so far:
Downloaded files:
Added these lines in my ~/.bashrc:
Installation:
At this point I can build libnds just by typing make in the libnds directory. Fine, so I try the same with libfat; in this post wintermute suggests to create a libfat directory inside libnds directory, so here I go:
But this time make -C nds doesn't work as well:
The error is on mkdir invocation; one could work around it using "mkdir -p" instead of plain mkdir, but maybe I have a flaw in my directory structure?
Thanks in advance for any suggestion!
This has been my progress so far:
Downloaded files:
Code: |
devkitARM_r21-linux.tar.bz2
libfat-src-20070127.tar.bz2 libnds-src-20071023.tar.bz2 nds-examples-20071023.tar.bz2 |
Added these lines in my ~/.bashrc:
Code: |
export DEVKITPRO=~/devkitPRO
export DEVKITARM=$DEVKITPRO/devkitARM |
Installation:
Code: |
cd ~
mkdir devkitPRO cd devkitPRO tar xvjf devkitARM_r21-linux.tar.bz2 mkdir libnds cd libnds tar xvjf libnds-src-20071023.tar.bz2 |
At this point I can build libnds just by typing make in the libnds directory. Fine, so I try the same with libfat; in this post wintermute suggests to create a libfat directory inside libnds directory, so here I go:
Code: |
mkdir libfat
tar xvjf libfat-src-20070127.tar.bz2 |
But this time make -C nds doesn't work as well:
Code: |
io_scsd_s.s
arm-eabi-gcc -MMD -MP -MF /home/tempest/devkitPRO/libnds/libfat/nds/release/io_scsd_s.d -x assembler-with-cpp -g -mthumb -mthumb-interwork -c /home/tempest/devkitPRO/libnds/libfat/nds/../source/disc_io/io_scsd_s.s -o io_scsd_s.o mkdir /home/tempest/devkitPRO/libnds/libfat/nds/release/../nds/lib mkdir: cannot create directory `/home/tempest/devkitPRO/libnds/libfat/nds/release/../nds/lib': No such file or directory make[1]: *** [/home/tempest/devkitPRO/libnds/libfat/nds/release/../nds/lib] Error 1 make: *** [release] Error 2 make: Leaving directory `/home/tempest/devkitPRO/libnds/libfat/nds' |
The error is on mkdir invocation; one could work around it using "mkdir -p" instead of plain mkdir, but maybe I have a flaw in my directory structure?
Thanks in advance for any suggestion!