Skip to content

Commit

Permalink
Merge pull request #197 from yoyoerx/windocs
Browse files Browse the repository at this point in the history
Cygwin Based Users Guide v0.6 -fixes to dfu-programmer build
  • Loading branch information
jackhumbert committed Mar 14, 2016
2 parents 45de75f + b8d4af8 commit f2cf3f3
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions keyboard/planck/CYGWIN_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ Download the `cygwin` setup ([x86_64](https://cygwin.com/setup-x86_64.exe)) and
- devel/make
- devel/texinfo
- devel/gettext-devel
- devel/automake
- devel/autoconfig
- devel/libtool
- text/gettext
- libs/libgcc1
- interpreters/m4
Expand Down Expand Up @@ -60,7 +63,7 @@ These commands will set up the install directory and the `PATH` variable, which
$ PREFIX=$HOME/local/avr
$ export PREFIX
$ PATH=/usr/local/bin:/usr/local/lib:/usr/local/include:/bin:/lib:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS
$ PATH=$PATH:$PREFIX/bin
$ PATH=$PATH:$PREFIX/bin:$PREFIX/lib
$ export PATH
```

Expand Down Expand Up @@ -155,13 +158,13 @@ $ make install
We can either build our own, or use the precomplied binaries. The precompiled binaries don't play well with `cygwin` so it is better to build them ourselves. The procedure for the precompiled binaries is included at the end of this guide.

### Build and Install the `libusb`
The `dfu-programmer` requires `libusb` so that it can interact with the USB system.
The `dfu-programmer` requires `libusb` so that it can interact with the USB system. These repos must be bootstrapped in order to create an appropriate `./configure` and `Makefile` for your system.
```
$ cd ~/src
$ git clone https://github.com/libusb/libusb.git
$ cd libusb
$ ./bootstrap.sh
$ ./configure --prefix=$PREFIX
$ ./configure
$ make
$ make install
```
Expand All @@ -172,15 +175,15 @@ $ cd ~/src
$ git clone https://github.com/dfu-programmer/dfu-programmer.git
$ cd dfu-programmer
$ ./bootstrap.sh
$ ./configure --prefix=$PREFIX
$ ./configure
$ make
$ make install
```

Verify the installation with:
```
$ which dfu-programmer
/home/Kevin/local/avr/bin/dfu-programmer
/usr/local/bin/dfu-programmer
$ dfu-programmer
dfu-programmer 0.7.2
Expand Down Expand Up @@ -315,7 +318,6 @@ These tools are for debugging your firmware, etc. before flashing. Theoretically
$ cd ~/src
$ git clone git://sourceware.org/git/binutils-gdb.git
$ cd binutils-gdb
$ ./bootstrap
$ mkdir obj-avr
$ cd obj-avr
$ ../configure --prefix=$PREFIX --target=avr --build=x86_64-unknown-cygwin --with-gmp=/usr/local --with-mpfr=/usr/local --with-mpc=/usr/local --disable-nls --enable-static
Expand Down

0 comments on commit f2cf3f3

Please sign in to comment.