Changeset 5dc9f33


Ignore:
Timestamp:
Sep 30, 2013, 5:18:49 PM (11 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
e57859f
Parents:
6f41b89
git-author:
Paul Brossier <piem@piem.org> (09/26/13 21:58:55)
git-committer:
Paul Brossier <piem@piem.org> (09/30/13 17:18:49)
Message:

wscript: fallback on ooura last

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wscript

    r6f41b89 r5dc9f33  
    139139            args = '--cflags --libs', mandatory = False)
    140140    ctx.define('HAVE_FFTW3', 1)
     141
     142  # fftw disabled, use ooura
     143  if 'HAVE_FFTW3F' in ctx.env.define_key:
     144    ctx.msg('Checking for FFT implementation', 'fftw3f')
     145  elif 'HAVE_FFTW3' in ctx.env.define_key:
     146    ctx.msg('Checking for FFT implementation', 'fftw3')
     147  elif 'HAVE_ACCELERATE' in ctx.env.define_key:
     148    ctx.msg('Checking for FFT implementation', 'vDSP')
    141149  else:
    142     # fftw disabled, use ooura
    143     if 'HAVE_ACCELERATE' in ctx.env.define_key:
    144         ctx.msg('Checking for FFT implementation', 'vDSP')
    145     else:
    146         ctx.msg('Checking for FFT implementation', 'ooura')
    147     pass
     150    ctx.msg('Checking for FFT implementation', 'ooura')
    148151
    149152  if (Options.options.enable_jack != False):
Note: See TracChangeset for help on using the changeset viewer.