28 Dec
2011
28 Dec
'11
12:19 a.m.
The compile line in the makefile looks wrong: "g++ -o -lpthread chuck chuck.tab.o chuck.yy.o chuck_absyn.o ..." It's compiling the binary with the (wrong) name of "-lpthread" and trying to link a with a file named "chuck" (the right executable name) and that's where the error line comes from. If you know a little about makefiles and code compilation, find the makefile.alsa and tweak it to correct this, in my makefile this is around line 40.