Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Column
width80%

Introduction

Windows does not provide a bash environment like other 'Unix' systems. Most of tools are prepackaged and downloaded from our server to make the installation as friendly as possible. All you need to install manually is the msysGit package. Then, after run running two scripts and , you should have a complete build environment ready.

Column
width30%
Table of Content Zone
locationtop

 

Table of Contents
 

...

  • Download msysGit from https://git-for-windows.github.io/
  • Install msysGit with default options except path the install directory that needs to be without spaces, e.g. C:\GIT.

...

Tip
titlemake command
Column
width50%

Tired typing tools/bin/make every time?

The following command will add /c/CODE/librepilot/tools/bin to your PATH:

Code Block
languagepowershell
themeEmacs
echo "export PATH=\"\$PATH:/C/code/librepilot/tools/bin\"" >> ~/.profile


After issuing the above command, you'll need to exit the current shell and start a new one for it to take effect.

The rest of the document assumes you have done this step (and we really recommend that you do it).

Install the toolchain

The toolchains toolchain is used to build the software:

...