v1.6.0
CGO Dependency default behavior changed
CGO Dependencies now are disabled by default on all platforms.
Enable with:
- portaudio:
-tags withportaudio - fftw:
-tags withfftw
Example:
go run -tags withportaudio . -b ...- With portaudiogo run -tags withfftw . -b ...- With fftwgo run -tags withfftw,withportaudio . -b ...- With portaudio and fftw
Full Changelog: v1.5.0...v1.6.0