Advertisement
dsreyes1014

caps 'make' command

May 25th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. make
  2. g++ -MM -O3 -ffast-math -funroll-loops -Wall -fPIC -DPIC -msse -mfpmath=sse -msse3 White.cc CabIII.cc ToneStack.cc Noisegate.cc AutoFilter.cc Saturate.cc Fractals.cc Eq.cc Amp.cc Sin.cc Phaser.cc CabIV.cc Click.cc Scape.cc Compress.cc interface.cc Chorus.cc Pan.cc Reverb.cc dsp/polynomials.cc > depend
  3. g++ -O3 -ffast-math -funroll-loops -Wall -fPIC -DPIC -msse -mfpmath=sse -msse3 -o White.o -c White.cc
  4. g++ -O3 -ffast-math -funroll-loops -Wall -fPIC -DPIC -msse -mfpmath=sse -msse3 -o CabIII.o -c CabIII.cc
  5. In file included from Cabinet.h:41,
  6. from CabIII.cc:31:
  7. dsp/v4f_IIR2.h: In member function ‘void DSP::IIR2v4::set_eq(v4f_t, v4f_t, v4f_t)’:
  8. dsp/v4f_IIR2.h:145:17: error: ‘pow10f’ was not declared in this scope
  9. A = v4f_map<pow10f> (A);
  10. ^~~~~~
  11. dsp/v4f_IIR2.h:145:17: note: suggested alternative: ‘powf’
  12. A = v4f_map<pow10f> (A);
  13. ^~~~~~
  14. powf
  15. dsp/v4f_IIR2.h:145:27: error: no matching function for call to ‘v4f_map<<expression error> >(v4f_t&)’
  16. A = v4f_map<pow10f> (A);
  17. ^
  18. In file included from Cabinet.h:39,
  19. from CabIII.cc:31:
  20. dsp/v4f.h:74:7: note: candidate: ‘template<float (* fn)(float)> v4f_t v4f_map(v4f_t)’
  21. v4f_t v4f_map (v4f_t x)
  22. ^~~~~~~
  23. dsp/v4f.h:74:7: note: template argument deduction/substitution failed:
  24. In file included from Cabinet.h:41,
  25. from CabIII.cc:31:
  26. dsp/v4f_IIR2.h:145:27: error: template argument 1 is invalid
  27. A = v4f_map<pow10f> (A);
  28. ^
  29. dsp/v4f_IIR2.h: In member function ‘void DSP::IIR2v4Bank<N>::set_eq(v4f_t*, v4f_t*, v4f_t*)’:
  30. dsp/v4f_IIR2.h:432:18: error: ‘pow10f’ was not declared in this scope
  31. A = v4f_map<pow10f> (A);
  32. ^~~~~~
  33. dsp/v4f_IIR2.h:432:18: note: suggested alternative: ‘powf’
  34. A = v4f_map<pow10f> (A);
  35. ^~~~~~
  36. powf
  37. make: *** [Makefile:59: CabIII.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement