On Sat, Mar 27, 2010 at 12:19 AM, Hugo Parente Lima <[email protected]> wrote: >> Hugo, do you know how to force c++ or Makefile to use >> /usr/local/bin/ld instead of /usr/bin/ld. Is it possible to select >> this at cmake level? This would be great help for automated build >> here... > > No... better try to ask this at #cmake on freenode, maybe they could help.
Ok, I've found few ways to accomplish this easily: -use the "-B/usr/local/bin/" switch just as the -L and the -I -use environment COMPILER_PATH or better GCC_EXEC_PATH to specify path where programs executel internally by the gcc are kept Both of these solutions simply prepends specified path before the environment data, so if the program is not found in the specified path, it is still searched in standard order :-) Testing under way.. Best regards, Tomek -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info _______________________________________________ PySide mailing list [email protected] http://lists.openbossa.org/listinfo/pyside
