Skip to content

v1.6.0

Compare
Choose a tag to compare
@noriah noriah released this 06 Apr 17:42
· 74 commits to main since this release
v1.6.0
6ac6e86

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 portaudio
  • go run -tags withfftw . -b ... - With fftw
  • go run -tags withfftw,withportaudio . -b ... - With portaudio and fftw

Full Changelog: v1.5.0...v1.6.0