Difference between revisions of "NU32 Software"

From Mech
Jump to navigationJump to search
Line 15: Line 15:


* Native C Compiler
* Native C Compiler
** [https://developer.apple.com/xcode/ Xcode Command Line Tools] (Mac)
** [https://developer.apple.com/downloads Xcode Command Line Tools] (Mac) (log in with an Apple developer id, available for free, and download "Command Line Tools OSX (version number) for Xcode (version number)")
** [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)

Revision as of 19:01, 17 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
    • Xcode Command Line Tools (Mac) (log in with an Apple developer id, available for free, and download "Command Line Tools OSX (version number) for Xcode (version number)")
    • MinGW (Windows)
    • gcc (Linux)
      • sudo apt-get install build-essential (Ubuntu/Debian)
      • sudo pacman -S base-devel (Arch)
  • 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)