Difference between revisions of "NU32 Software"

From Mech
Jump to navigationJump to search
Line 10: Line 10:
*** sudo pacman -S vim (Arch)
*** sudo pacman -S vim (Arch)
** [https://www.gnu.org/software/emacs/ emacs] (All)
** [https://www.gnu.org/software/emacs/ emacs] (All)
*** sudo apt-get install emacs (Ubuntu/Debian)
*** sudo pacman -S emacs (Arch)
** [https://atom.io/ atom] (All)
** [https://atom.io/ atom] (All)


Line 16: Line 18:
** [http://www.mingw.org/wiki/Getting_Started MinGW] (Windows)
** [http://www.mingw.org/wiki/Getting_Started MinGW] (Windows)
** [http://gcc.gnu.org gcc] (Linux)
** [http://gcc.gnu.org gcc] (Linux)
** sudo apt-get install build-essential (Ubuntu/Debian)
*** sudo apt-get install build-essential (Ubuntu/Debian)
** sudo pacman -S base-devel (Arch)
*** sudo pacman -S base-devel (Arch)


* Make
* Make
Line 23: Line 25:
** Distributed with MSYS, obtained via MinGW (Windows)
** Distributed with MSYS, obtained via MinGW (Windows)
** [https://www.gnu.org/software/make/ make] (Linux)
** [https://www.gnu.org/software/make/ make] (Linux)
** sudo apt-get install build-essential (Ubuntu/Debian)
*** sudo apt-get install build-essential (Ubuntu/Debian)
** sudo pacman -S base-devel (Arch)
*** sudo pacman -S base-devel (Arch)


* [http://www.microchip.com/pagehandler/en_us/devtools/mplabxc/ The Microchip XC32 Compiler]
* [http://www.microchip.com/pagehandler/en_us/devtools/mplabxc/ The Microchip XC32 Compiler]

Revision as of 18:16, 11 December 2015

Software

  • Text Editors (These are just suggestions; feel free to use any text editor you are comfortable with)
    • TextWrangler (Mac)
    • Notepad++ (Windows)
    • Gedit (All)
      • sudo apt-get install (Ubuntu/Debian)
      • sudo pacman -S gedit (Arch)
    • vim (All)
      • sudo apt-get install vim (Ubuntu/Debian)
      • sudo pacman -S vim (Arch)
    • emacs (All)
      • sudo apt-get install emacs (Ubuntu/Debian)
      • sudo pacman -S emacs (Arch)
    • atom (All)
  • Native C Compiler
  • Make
    • Distributed with Xcode (Mac)
    • Distributed with MSYS, obtained via MinGW (Windows)
    • make (Linux)
      • sudo apt-get install build-essential (Ubuntu/Debian)
      • sudo pacman -S base-devel (Arch)