You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
Simply make won't generate the bin directory neither the example binaries
What is the expected output? What do you see instead?
The binaries. After you create the directory by hand, the compiler will
complain about undefined references to gl functions
What version of the product are you using? On what operating system?
Latest on Ubuntu 12.04
Please provide any additional information below.
After creating the bin directory as mentioned before, you have to apply the
following change in the Makefile in order to get things work:
In examples/Makefile in every row you have to change the order of the included
libraries for example:
original:
$(CC) $(LIB) $(INCDIR) -o bin/ex101_creating_a_plot ex101_creating_a_plot.cc
$(ALIB)
corrected:
$(CC) $(INCDIR) -o bin/ex101_creating_a_plot ex101_creating_a_plot.cc $(ALIB)
$(LIB)
and so on.
I didn't solve the bin creation problem
Original issue reported on code.google.com by [email protected] on 29 Sep 2012 at 8:54
Original issue reported on code.google.com by
[email protected]
on 29 Sep 2012 at 8:54Attachments:
The text was updated successfully, but these errors were encountered: