Setting up Development Environment: Difference between revisions

Undo revision 20192 by Arefu (talk) Don't set path in .bashrc
Don't set path in .bashrc. devkitARM is not the only arm-none-eabi toolchain someone could potentially use. This is why the Makefiles use the other variable to set path
Line 41: Line 41:
echo "export DEVKITPRO=/opt/devkitpro" >> ~/.bashrc
echo "export DEVKITPRO=/opt/devkitpro" >> ~/.bashrc
echo "export DEVKITARM=/opt/devkitpro/devkitARM" >> ~/.bashrc
echo "export DEVKITARM=/opt/devkitpro/devkitARM" >> ~/.bashrc
echo "export PATH=$PATH:/opt/devkitpro/devkitARM/bin" >> ~/.bashrc
source ~/.bashrc
source ~/.bashrc
</pre>
</pre>