| | | |
| The compile command I used was: | | The compile command I used was: |
| | | |
| `python setup.py build --compiler=mingw` | | `python setup.py build --compiler=mingw` |
| | | |
| t | Make sure the MinGW directory is in your `PATH`. | t | Make sure the MinGW directory is in your `PATH`.
|
| | |
|
| | | ## Windows Vista 64bit
|
| | |
|
| | | Mostly the same as the procedures above, but just |
| | | wanted to add a few clarifications.
|
| | |
|
| | | After installing the MingGW compiler, add it to yo |
| | | ur path.
|
| | |
|
| | | Run `set path=C:\MinGW\bin;%path%` (to temporarily |
| | | add it)
|
| | | or
|
| | | Right click `Computer>Properties>Advanced system s |
| | | ettings`, then in the `Advanced` tab choose `Envir |
| | | onment Variables` and scroll down to `path` in the |
| | | system variables and add `C:\MinGW\bin` to your p |
| | | ath.
|
| | |
|
| | | While there, also add `C:\Program Files (x86)\Pyth |
| | | on 26\Scripts\` to your path
|
| | |
|
| | | `python setup.py build --compiler=mingw32`
|
| | |
|
| | | Note: the compiler option mingw32 is required to s |
| | | pecify it to use the 32bit compiler. When run as |
| | | --compiler=mingw, it will return `error: don't kno |
| | | w how to compile C/C++ code on platform 'nt' with |
| | | 'mingw' compiler.`
|
| | |
|
| | | In the listen.py file in your `site-packages\boodl |
| | | e` folder, comment out the line `import fcntl`
|
| | |
|
| | | In boodler.py, in the line that reads `basedir = o |
| | | s.path.join(os.environ.get('HOME')`, change HOME t |
| | | o HOMEPATH
|
| | |
|
| | | At this point, Boodler will fail while trying to s |
| | | elect an audio driver. You have the option of expo |
| | | rting to file or stdout, though neither readily pr |
| | | oduces a listenable file. |