What steps will reproduce the problem? 1. install libartnet
install artnet-examples-0.3.11
In function dmx_handler': undefined reference toartnet_read_dmx' What is the expected output? What do you see instead? I expected it to work :) However it seems the Makefile issues gcc the wrong way.
The Makefile does:
gcc -Wall -Werror -g -O2 -L/usr/local/lib -lartnet -o artnet_usb artnet-usb.o -lpthread
What works is:
gcc -Wall -Werror -g -O2 -L/usr/local/lib -o artnet_usb artnet-usb.o -lartnet -lpthread
I haven't found a fix for the Makefiles (yet) What version of the product are you using? On what operating system? artnet-examples-0.3.11
libartnet-1.1.0
Linux Ubuntu Precise x86_64 Please provide any additional information below.
From aloons...@gmail.com on August 30, 2012 03:43:19
What steps will reproduce the problem? 1. install libartnet
dmx_handler': undefined reference to
artnet_read_dmx' What is the expected output? What do you see instead? I expected it to work :) However it seems the Makefile issues gcc the wrong way. The Makefile does: gcc -Wall -Werror -g -O2 -L/usr/local/lib -lartnet -o artnet_usb artnet-usb.o -lpthreadWhat works is: gcc -Wall -Werror -g -O2 -L/usr/local/lib -o artnet_usb artnet-usb.o -lartnet -lpthread
I haven't found a fix for the Makefiles (yet) What version of the product are you using? On what operating system? artnet-examples-0.3.11 libartnet-1.1.0 Linux Ubuntu Precise x86_64 Please provide any additional information below.
Original issue: http://code.google.com/p/open-lighting/issues/detail?id=207