Cross compiling Qt and dealing with teams
Let me share some notes on how Embedded Linux programming can be, if you decide the war/pain is over. We do this by looking at the desktop build and then look at the tons of stuff that you need for embedded programming. Desktop $ pkg-config –cflags libpng12…$ qmake && make… Embedded$ . /usr/local/angstrom/arm/environment$ pkg-config –cflags libpng12..…$ qmake-qt4 && make Where is the difference?There is little, you just use a cross compiler. The GNU/Linux Toolchain is prepared for cross compilation, pkg-config…