|
ISTRICE DOCUMENTATION
COMPILING ISTRICE
ISTRICE AND
AUTOMAKE/QMAKE
|
To use ISTRICE to compile a project based
on automake these variable must be set before calling the configure
script (or during):
CC
CXX
eg:
./configure
--prefix=/prog/ex1 CC=/usr/local/bin/gccwrapper CXX=/usr/local/bin/g++wrapper
Using a qmake .pro project files the variables to set are:
QMAKE_CC
QMAKE_CXX
eg:
qmake
"QMAKE_CC=/usr/local/bin/gccwrapper"
"QMAKE_CXX=/usr/local/bin/g++wrapper"
|
|