Hi,
i'm trying to change the compiler of a software from gcc to mpiCC. i tried changing the code in the make file, to make it accept mpiCC in place of gcc. A small part of the make file is
import string
import getopt
prefix=os.environ['ECELL3_PREFIX']
exec_prefix=prefix
libdir=exec_prefix + os.sep + 'lib'
CXX='g++'
ORIG_CXXFLAGS="-O2 -g -pipe -march=i386 -mcpu=i686"
LDADD='-lstdc++'
SHLEXT='.so'
CXXSUFFIX='.cpp'
CXXFLAGS = os.environ.get('CXXFLAGS','')
VERBOSE = False
i would like to know where and what kind of changes i should make to force it to change from gcc compiler to mpiCC compiler.
Thanks,
NG
---------------------------------
Do you Yahoo!?
Yahoo! Mail - Helps protect you from nasty viruses.
|