Posts Tagged ‘eclipse’

August 20, 2012 0

correct tooltip colors in eclipse

By in Eclipse

If the tool tip colors make the tool tip unreadable then the colors can be changes in sudo gedit /usr/share/themes/Ambiance/gtk-2.0/gtkrc see link for color suggestions: http://askubuntu.com/questions/70599/how-to-change-tooltip-background-color-in-unity

Tags: , ,

August 7, 2012 0

linker error when using pkg-config

By in c++, C++, Eclipse, gcc

If you are not able to link with a library that is specified via pkg-config then make sure your pkg-config flag is placed in the end of the compiler/linker command eg: g++ -o “OpenCV2.3Test”  ./main.o `pkg-config –libs opencv` instead of g++ `pkg-config –libs opencv` -o “OpenCV2.3Test”  ./main.o In Eclipse this is done by going to project […]

Tags: , ,