Advertisement
dsreyes1014

make caps

May 25th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 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. g++ -O3 -ffast-math -funroll-loops -Wall -fPIC -DPIC -msse -mfpmath=sse -msse3 -o ToneStack.o -c ToneStack.cc
  6. g++ -O3 -ffast-math -funroll-loops -Wall -fPIC -DPIC -msse -mfpmath=sse -msse3 -o Noisegate.o -c Noisegate.cc
  7. g++ -O3 -ffast-math -funroll-loops -Wall -fPIC -DPIC -msse -mfpmath=sse -msse3 -o AutoFilter.o -c AutoFilter.cc
  8. AutoFilter.cc: In member function ‘void AutoFilter::cycle(uint)’:
  9. AutoFilter.cc:72:35: error: call of overloaded ‘div(uint&, uint&)’ is ambiguous
  10. div_t qr = div (frames, blocksize);
  11. ^
  12. In file included from /usr/include/c++/8.1.0/cstdlib:75,
  13. from /usr/include/c++/8.1.0/stdlib.h:36,
  14. from basics.h:41,
  15. from AutoFilter.cc:31:
  16. /usr/include/stdlib.h:849:14: note: candidate: ‘div_t div(int, int)’
  17. extern div_t div (int __numer, int __denom)
  18. ^~~
  19. In file included from /usr/include/c++/8.1.0/stdlib.h:36,
  20. from basics.h:41,
  21. from AutoFilter.cc:31:
  22. /usr/include/c++/8.1.0/cstdlib:213:3: note: candidate: ‘lldiv_t __gnu_cxx::div(long long int, long long int)’
  23. div(long long __n, long long __d)
  24. ^~~
  25. /usr/include/c++/8.1.0/cstdlib:177:3: note: candidate: ‘ldiv_t std::div(long int, long int)’
  26. div(long __i, long __j) { return ldiv(__i, __j); }
  27. ^~~
  28. make: *** [Makefile:59: AutoFilter.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement