Setting up Development Environment: Difference between revisions

Merry (talk | contribs)
No edit summary
Merry (talk | contribs)
m Correct shell syntax
Line 99: Line 99:
Use the following command before installing [http://askubuntu.com/questions/573070/problem-setting-up-environment-for-make-command-execution]:
Use the following command before installing [http://askubuntu.com/questions/573070/problem-setting-up-environment-for-make-command-execution]:
  sudo chown $USER /opt/devkitpro/ -R
  sudo chown $USER /opt/devkitpro/ -R
  echo "export DEVKITPRO="/opt/devkitpro/" >> ~/.profile
  echo "export DEVKITPRO=\"/opt/devkitpro/\"" >> ~/.profile
  echo "export DEVKITARM="${DEVKITPRO}/devkitARM/" >> ~/.profile
  echo "export DEVKITARM=\"\${DEVKITPRO}/devkitARM/\"" >> ~/.profile
  source ~/.profile
  source ~/.profile


For WSL users, you need to close the Bash shell, then reopen it for WSL to reload all of the variables from a clean state.
For WSL users, you need to close the Bash shell, then reopen it for WSL to reload all of the variables from a clean state.