
Overview of build changes and how Qt 4.5.3 was configured for Maya builds



The mkspec/common/g++.conf file has been modified to use the Maya default compiler of:  stock gcc 4.1.2
Using symlinks of    gcc410   and  g++410 

    /usr/bin/gcc410 -> /opt/gcc412/bin/gcc412
	/usr/bin/g++410 -> /opt/gcc412/bin/g++412

without having to setup environment variables  CC CXX, or other for linking
The Qt libraries are linked with  $ORIGI relative RPATH settings


./configure -separate-debug-info -no-rpath -no-phonon -no-phonon-backend -no-webkit


To Build:


If using csh/tcsh:

make -j8 >build.log



If using bash:

./configure -separate-debug-info -no-rpath -no-phonon -no-phonon-backend -no-webkit

make -j8 &>build.log

redirectng both stderr and stdout  allows one to see the type of warning/error
messages that are generated while building.


