Skip to content

Instantly share code, notes, and snippets.

@antisvin
Created November 23, 2019 19:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antisvin/c47acdfe2f945fe12e65684b2210029b to your computer and use it in GitHub Desktop.
Save antisvin/c47acdfe2f945fe12e65684b2210029b to your computer and use it in GitHub Desktop.
Building patch FloatArrayTest
./TestPatches/PatchTest.cpp:34:4: warning: #warning TODO! [-Wcpp]
34 | #warning TODO!
| ^~~~~~~
In file included from ./Build/registerpatch.h:1,
from ./TestPatches/PatchTest.cpp:7:
./TestPatches/FloatArrayTestPatch.hpp: In constructor ‘FloatArrayTestPatch::FloatArrayTestPatch()’:
./TestPatches/FloatArrayTestPatch.hpp:54:16: warning: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘unsigned int’} [-Wsign-compare]
54 | assert(size==fa.getSize(), "constructor size");
| ~~~~^~~~~~~~~~~~~~
./TestPatches/FloatArrayTestPatch.hpp:61:16: warning: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘unsigned int’} [-Wsign-compare]
61 | assert(size==tempFa1.getSize(),"create() size");
| ~~~~^~~~~~~~~~~~~~~~~~~
./TestPatches/FloatArrayTestPatch.hpp:68:24: warning: comparison of integer expressions of different signedness: ‘size_t’ {aka ‘unsigned int’} and ‘int’ [-Wsign-compare]
68 | assert(fa.getSize()==size, "getSize");
| ~~~~~~~~~~~~^~~~~~
./TestPatches/FloatArrayTestPatch.hpp:395:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘unsigned int’} [-Wsign-compare]
395 | for(int n=0; n<sub.getSize(); n++){
| ~^~~~~~~~~~~~~~
/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: /tmp/cczSTW69.o:(.data.rel.ro._ZTV5Patch[_ZTV5Patch]+0x1c): undefined reference to `Patch::processMidi(MidiMessage)'
/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: /tmp/cczSTW69.o:(.data.rel.ro._ZTV5Patch[_ZTV5Patch]+0x20): undefined reference to `Patch::sendMidi(MidiMessage)'
/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: /tmp/cczSTW69.o:(.data.rel.ro._ZTV19FloatArrayTestPatch[_ZTV19FloatArrayTestPatch]+0x1c): undefined reference to `Patch::processMidi(MidiMessage)'
/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: /tmp/cczSTW69.o:(.data.rel.ro._ZTV19FloatArrayTestPatch[_ZTV19FloatArrayTestPatch]+0x20): undefined reference to `Patch::sendMidi(MidiMessage)'
/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: /tmp/cczSTW69.o:(.data.rel.ro._ZTV9TestPatch[_ZTV9TestPatch]+0x1c): undefined reference to `Patch::processMidi(MidiMessage)'
/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: /tmp/cczSTW69.o:(.data.rel.ro._ZTV9TestPatch[_ZTV9TestPatch]+0x20): undefined reference to `Patch::sendMidi(MidiMessage)'
/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: ./Build/basicmaths.o: in function `pvPortRealloc':
/home/antisvin/dev/rebeltech/OwlProgram.faust/./LibSource/basicmaths.c:8: undefined reference to `vPortFree'
/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: /home/antisvin/dev/rebeltech/OwlProgram.faust/./LibSource/basicmaths.c:9: undefined reference to `pvPortMalloc'
/usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../x86_64-pc-linux-gnu/bin/ld: ./Build/basicmaths.o: in function `pvPortCalloc':
/home/antisvin/dev/rebeltech/OwlProgram.faust/./LibSource/basicmaths.c:17: undefined reference to `pvPortMalloc'
collect2: error: ld returned 1 exit status
make[1]: *** [test.mk:173: test] Error 1
make: *** [Makefile:148: test] Error 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment