xref: /petsc/config/PETSc/Configure.py (revision e433681f028a60e1ba813d7c632ab963d30d2bde)
1f8833479SBarry Smithimport config.base
2f8833479SBarry Smith
3f8833479SBarry Smithimport os
46dd73af6SBarry Smithimport sys
5f8833479SBarry Smithimport re
640277576SBarry Smithimport cPickle
7f8833479SBarry Smith
88bec23c5SJed Brown# The sorted() builtin is not available with python-2.3
98bec23c5SJed Browntry: sorted
108bec23c5SJed Brownexcept NameError:
118bec23c5SJed Brown  def sorted(lst):
128bec23c5SJed Brown    lst.sort()
138bec23c5SJed Brown    return lst
148bec23c5SJed Brown
15f8833479SBarry Smithclass Configure(config.base.Configure):
16f8833479SBarry Smith  def __init__(self, framework):
17f8833479SBarry Smith    config.base.Configure.__init__(self, framework)
18f8833479SBarry Smith    self.headerPrefix = 'PETSC'
19f8833479SBarry Smith    self.substPrefix  = 'PETSC'
20aa5c8b8eSBarry Smith    self.installed = 0 # 1 indicates that Configure itself has already compiled and installed PETSc
21f8833479SBarry Smith    return
22f8833479SBarry Smith
237c939e48SSatish Balay  def __str2__(self):
247c939e48SSatish Balay    desc = []
25aa5c8b8eSBarry Smith    if not self.installed:
26a0022257SSatish Balay      desc.append('xxx=========================================================================xxx')
27ac1d0f13SJed Brown      if self.make.getMakeMacro('MAKE_IS_GNUMAKE'):
289481793eSSatish Balay        build_type = 'gnumake build'
299481793eSSatish Balay      elif self.getMakeMacro('PETSC_BUILD_USING_CMAKE'):
30b3618d6dSSatish Balay        build_type = 'cmake build'
31b3618d6dSSatish Balay      else:
32b3618d6dSSatish Balay        build_type = 'legacy build'
33b3618d6dSSatish Balay      desc.append(' Configure stage complete. Now build PETSc libraries with (%s):' % build_type)
34b3618d6dSSatish Balay      desc.append('   make PETSC_DIR='+self.petscdir.dir+' PETSC_ARCH='+self.arch.arch+' all')
35a0022257SSatish Balay      desc.append('xxx=========================================================================xxx')
36aa5c8b8eSBarry Smith    else:
37aa5c8b8eSBarry Smith      desc.append('xxx=========================================================================xxx')
38aa5c8b8eSBarry Smith      desc.append(' Installation complete. You do not need to run make to compile or install the software')
39aa5c8b8eSBarry Smith      desc.append('xxx=========================================================================xxx')
407c939e48SSatish Balay    return '\n'.join(desc)+'\n'
41f8833479SBarry Smith
42f8833479SBarry Smith  def setupHelp(self, help):
43f8833479SBarry Smith    import nargs
44ce0b2093SBarry Smith    help.addArgument('PETSc',  '-prefix=<dir>',                   nargs.Arg(None, '', 'Specifiy location to install PETSc (eg. /usr/local)'))
457deb5ab3SBarry Smith    help.addArgument('PETSc',  '-with-prefetch=<bool>',           nargs.ArgBool(None, 1,'Enable checking for prefetch instructions'))
46eed94e11SSatish Balay    help.addArgument('Windows','-with-windows-graphics=<bool>',   nargs.ArgBool(None, 1,'Enable check for Windows Graphics'))
47569865ddSSatish Balay    help.addArgument('PETSc', '-with-default-arch=<bool>',        nargs.ArgBool(None, 1, 'Allow using the last configured arch without setting PETSC_ARCH'))
4857cb31baSSatish Balay    help.addArgument('PETSc','-with-single-library=<bool>',       nargs.ArgBool(None, 1,'Put all PETSc code into the single -lpetsc library'))
49525d6f2eSBarry Smith    help.addArgument('PETSc', '-with-ios=<bool>',              nargs.ArgBool(None, 0, 'Build an iPhone/iPad version of PETSc library'))
508fd71741SJason Sarich    help.addArgument('PETSc', '-with-xsdk-defaults', nargs.ArgBool(None, 0, 'Set the following as defaults for the xSDK standard: --enable-debug=1, --enable-shared=1, --with-precision=double, --with-index-size=32, locate blas/lapack automatically'))
51752d89a4SSatish Balay    help.addArgument('PETSc', '-known-has-attribute-aligned=<bool>',nargs.ArgBool(None, None, 'Indicates __attribute((aligned(16)) directive works (the usual test will be skipped)'))
5227b0f280SBarry Smith    help.addArgument('PETSc','-with-viewfromoptions=<bool>',      nargs.ArgBool(None, 1,'Support XXXSetFromOptions() calls, for calls with many small solvers turn this off'))
53752d89a4SSatish Balay
54f8833479SBarry Smith    return
55f8833479SBarry Smith
566dd73af6SBarry Smith  def registerPythonFile(self,filename,directory):
576dd73af6SBarry Smith    ''' Add a python file to the framework and registers its headerprefix, ... externalpackagedir
586dd73af6SBarry Smith        directory is the directory where the file relative to the BuildSystem or config path in python notation with . '''
596dd73af6SBarry Smith    (utilityName, ext) = os.path.splitext(filename)
606dd73af6SBarry Smith    if not utilityName.startswith('.') and not utilityName.startswith('#') and ext == '.py' and not utilityName == '__init__':
616dd73af6SBarry Smith      if directory: directory = directory+'.'
626dd73af6SBarry Smith      utilityObj                             = self.framework.require(directory+utilityName, self)
636dd73af6SBarry Smith      utilityObj.headerPrefix                = self.headerPrefix
646dd73af6SBarry Smith      utilityObj.archProvider                = self.arch
656dd73af6SBarry Smith      utilityObj.languageProvider            = self.languages
666dd73af6SBarry Smith      utilityObj.installDirProvider          = self.installdir
676dd73af6SBarry Smith      utilityObj.externalPackagesDirProvider = self.externalpackagesdir
686dd73af6SBarry Smith      utilityObj.precisionProvider           = self.scalartypes
696dd73af6SBarry Smith      utilityObj.indexProvider               = self.indexTypes
706dd73af6SBarry Smith      setattr(self, utilityName.lower(), utilityObj)
7151294b80SMatthew G. Knepley      return utilityObj
7251294b80SMatthew G. Knepley    return None
736dd73af6SBarry Smith
74f8833479SBarry Smith  def setupDependencies(self, framework):
75f8833479SBarry Smith    config.base.Configure.setupDependencies(self, framework)
76dca78d2bSSatish Balay    self.programs      = framework.require('config.programs',           self)
77f8833479SBarry Smith    self.setCompilers  = framework.require('config.setCompilers',       self)
7830b8aa07SMatthew G. Knepley    self.compilers     = framework.require('config.compilers',          self)
799d310bb7SBarry Smith    self.arch          = framework.require('PETSc.options.arch',        self.setCompilers)
809d310bb7SBarry Smith    self.petscdir      = framework.require('PETSc.options.petscdir',    self.arch)
819d310bb7SBarry Smith    self.installdir    = framework.require('PETSc.options.installDir',  self)
826dd73af6SBarry Smith    self.scalartypes   = framework.require('PETSc.options.scalarTypes', self)
836dd73af6SBarry Smith    self.indexTypes    = framework.require('PETSc.options.indexTypes',  self)
849d310bb7SBarry Smith    self.languages     = framework.require('PETSc.options.languages',   self.setCompilers)
855aab0b90SMatthew G. Knepley    self.debugging     = framework.require('PETSc.options.debugging',   self.compilers)
8630b8aa07SMatthew G. Knepley    self.indexTypes    = framework.require('PETSc.options.indexTypes',  self.compilers)
87f8833479SBarry Smith    self.compilers     = framework.require('config.compilers',          self)
88f8833479SBarry Smith    self.types         = framework.require('config.types',              self)
89f8833479SBarry Smith    self.headers       = framework.require('config.headers',            self)
90f8833479SBarry Smith    self.functions     = framework.require('config.functions',          self)
91f8833479SBarry Smith    self.libraries     = framework.require('config.libraries',          self)
92cd37d877SShri Abhyankar    self.atomics       = framework.require('config.atomics',            self)
939481793eSSatish Balay    self.make          = framework.require('config.packages.make',      self)
949552296fSBarry Smith    self.blasLapack    = framework.require('config.packages.BlasLapack',self)
9506e08bc7SBarry Smith    self.cmake         = framework.require('config.packages.cmake',self)
969d310bb7SBarry Smith    self.externalpackagesdir = framework.require('PETSc.options.externalpackagesdir',self)
97e6b0c433SBarry Smith    self.mpi           = framework.require('config.packages.MPI',self)
9849d43ecaSSatish Balay
999d310bb7SBarry Smith    for utility in os.listdir(os.path.join('config','PETSc','options')):
1006dd73af6SBarry Smith      self.registerPythonFile(utility,'PETSc.options')
1019d310bb7SBarry Smith
1029d310bb7SBarry Smith    for utility in os.listdir(os.path.join('config','BuildSystem','config','utilities')):
1036dd73af6SBarry Smith      self.registerPythonFile(utility,'config.utilities')
10406e08bc7SBarry Smith
10547c09f67SMatthew G. Knepley    for package in os.listdir(os.path.join('config', 'BuildSystem', 'config', 'packages')):
10651294b80SMatthew G. Knepley      obj = self.registerPythonFile(package,'config.packages')
10751294b80SMatthew G. Knepley      if obj:
10851294b80SMatthew G. Knepley        obj.archProvider                = self.framework.requireModule(obj.archProvider, obj)
10951294b80SMatthew G. Knepley        obj.languageProvider            = self.framework.requireModule(obj.languageProvider, obj)
11051294b80SMatthew G. Knepley        obj.installDirProvider          = self.framework.requireModule(obj.installDirProvider, obj)
11151294b80SMatthew G. Knepley        obj.externalPackagesDirProvider = self.framework.requireModule(obj.externalPackagesDirProvider, obj)
11251294b80SMatthew G. Knepley        obj.precisionProvider           = self.framework.requireModule(obj.precisionProvider, obj)
11351294b80SMatthew G. Knepley        obj.indexProvider               = self.framework.requireModule(obj.indexProvider, obj)
1146dd73af6SBarry Smith
1155faf1eacSMatthew G. Knepley    # Force blaslapack and opencl to depend on scalarType so precision is set before BlasLapack is built
1169d310bb7SBarry Smith    framework.require('PETSc.options.scalarTypes', self.f2cblaslapack)
1179d310bb7SBarry Smith    framework.require('PETSc.options.scalarTypes', self.fblaslapack)
1189d310bb7SBarry Smith    framework.require('PETSc.options.scalarTypes', self.blaslapack)
1195faf1eacSMatthew G. Knepley    framework.require('PETSc.options.scalarTypes', self.opencl)
1209d310bb7SBarry Smith    framework.require('PETSc.Regression', self)
121f8833479SBarry Smith
122dca78d2bSSatish Balay    self.programs.headerPrefix   = self.headerPrefix
123f8833479SBarry Smith    self.compilers.headerPrefix  = self.headerPrefix
124f8833479SBarry Smith    self.types.headerPrefix      = self.headerPrefix
125f8833479SBarry Smith    self.headers.headerPrefix    = self.headerPrefix
126f8833479SBarry Smith    self.functions.headerPrefix  = self.headerPrefix
127f8833479SBarry Smith    self.libraries.headerPrefix  = self.headerPrefix
1286dd73af6SBarry Smith
1296dd73af6SBarry Smith    # Look for any user provided --download-xxx=directory packages
1306dd73af6SBarry Smith    for arg in sys.argv:
1316dd73af6SBarry Smith      if arg.startswith('--download-') and arg.find('=') > -1:
1326dd73af6SBarry Smith        pname = arg[11:arg.find('=')]
1336dd73af6SBarry Smith        if not hasattr(self,pname):
1346dd73af6SBarry Smith          dname = os.path.dirname(arg[arg.find('=')+1:])
135ab079e5dSBarry Smith          if os.path.isdir(dname) and not os.path.isfile(os.path.join(dname,pname+'.py')):
136ab079e5dSBarry Smith            self.framework.logPrint('User is registering a new package: '+arg)
1376dd73af6SBarry Smith            sys.path.append(dname)
1386dd73af6SBarry Smith            self.registerPythonFile(pname+'.py','')
1396dd73af6SBarry Smith
1406dd73af6SBarry Smith    # test for a variety of basic headers and functions
141a8b45ee7SBarry Smith    headersC = map(lambda name: name+'.h', ['setjmp','dos', 'endian', 'fcntl', 'float', 'io', 'limits', 'malloc', 'pwd', 'search', 'strings',
142ba61063dSBarry Smith                                            'unistd', 'sys/sysinfo', 'machine/endian', 'sys/param', 'sys/procfs', 'sys/resource',
143a3aaec0aSJed Brown                                            'sys/systeminfo', 'sys/times', 'sys/utsname','string', 'stdlib',
144f8833479SBarry Smith                                            'sys/socket','sys/wait','netinet/in','netdb','Direct','time','Ws2tcpip','sys/types',
145a05e1a72SSatish Balay                                            'WindowsX', 'cxxabi','float','ieeefp','stdint','sched','pthread','mathimf','inttypes'])
14645082d64SJed Brown    functions = ['access', '_access', 'clock', 'drand48', 'getcwd', '_getcwd', 'getdomainname', 'gethostname',
147f8833479SBarry Smith                 'gettimeofday', 'getwd', 'memalign', 'memmove', 'mkstemp', 'popen', 'PXFGETARG', 'rand', 'getpagesize',
14838ecfe64SSatish Balay                 'readlink', 'realpath',  'sigaction', 'signal', 'sigset', 'usleep', 'sleep', '_sleep', 'socket',
149473bb0d5SSatish Balay                 'times', 'gethostbyname', 'uname','snprintf','_snprintf','lseek','_lseek','time','fork','stricmp',
150ac7218bbSSatish Balay                 'strcasecmp', 'bzero', 'dlopen', 'dlsym', 'dlclose', 'dlerror','get_nprocs','sysctlbyname',
1510787ed6cSSatish Balay                 '_set_output_format','_mkdir']
152f8833479SBarry Smith    libraries1 = [(['socket', 'nsl'], 'socket'), (['fpe'], 'handle_sigfpes')]
153f8833479SBarry Smith    self.headers.headers.extend(headersC)
154f8833479SBarry Smith    self.functions.functions.extend(functions)
155f8833479SBarry Smith    self.libraries.libraries.extend(libraries1)
1567d421530SBarry Smith
157f8833479SBarry Smith    return
158f8833479SBarry Smith
159262119f8SBarry Smith  def DumpPkgconfig(self):
160262119f8SBarry Smith    ''' Create a pkg-config file '''
161262119f8SBarry Smith    if not os.path.exists(os.path.join(self.petscdir.dir,self.arch.arch,'lib','pkgconfig')):
162262119f8SBarry Smith      os.makedirs(os.path.join(self.petscdir.dir,self.arch.arch,'lib','pkgconfig'))
163262119f8SBarry Smith    fd = open(os.path.join(self.petscdir.dir,self.arch.arch,'lib','pkgconfig','PETSc.pc'),'w')
164262119f8SBarry Smith    if self.framework.argDB['prefix']:
1655bb5b263SMatthew G. Knepley      fd.write('prefix='+self.installdir.dir+'\n')
166262119f8SBarry Smith      fd.write('exec_prefix=${prefix}\n')
167262119f8SBarry Smith      fd.write('includedir=${prefix}/include\n')
168262119f8SBarry Smith    else:
169262119f8SBarry Smith      fd.write('prefix='+self.petscdir.dir+'\n')
170262119f8SBarry Smith      fd.write('exec_prefix=${prefix}\n')
171262119f8SBarry Smith      fd.write('includedir=${prefix}/include\n')
1725bb5b263SMatthew G. Knepley    fd.write('libdir='+os.path.join(self.installdir.dir,'lib')+'\n')
173262119f8SBarry Smith
174262119f8SBarry Smith    self.setCompilers.pushLanguage('C')
175262119f8SBarry Smith    fd.write('ccompiler='+self.setCompilers.getCompiler()+'\n')
176262119f8SBarry Smith    self.setCompilers.popLanguage()
177262119f8SBarry Smith    if hasattr(self.compilers, 'C++'):
178262119f8SBarry Smith      self.setCompilers.pushLanguage('C++')
179262119f8SBarry Smith      fd.write('cxxcompiler='+self.setCompilers.getCompiler()+'\n')
180262119f8SBarry Smith      self.setCompilers.popLanguage()
181262119f8SBarry Smith    if hasattr(self.compilers, 'FC'):
182262119f8SBarry Smith      self.setCompilers.pushLanguage('FC')
183262119f8SBarry Smith      fd.write('fcompiler='+self.setCompilers.getCompiler()+'\n')
184262119f8SBarry Smith      self.setCompilers.popLanguage()
1859552296fSBarry Smith    fd.write('blaslapacklibs='+self.libraries.toStringNoDupes(self.blaslapack.lib)+'\n')
186262119f8SBarry Smith
187262119f8SBarry Smith    fd.write('\n')
188262119f8SBarry Smith    fd.write('Name: PETSc\n')
189262119f8SBarry Smith    fd.write('Description: Library to solve ODEs and algebraic equations\n')
190351d3a41SMatthew G Knepley    fd.write('Version: %s\n' % self.petscdir.version)
191262119f8SBarry Smith
192262119f8SBarry Smith    fd.write('Cflags: '+self.allincludes+'\n')
193262119f8SBarry Smith
194473a3ab2SBarry Smith    plibs = self.libraries.toStringNoDupes(['-L'+os.path.join(self.petscdir.dir,self.arch.arch,'lib'),' -lpetsc'])
195262119f8SBarry Smith    if self.framework.argDB['prefix']:
196c032e545SMatthew G. Knepley      fd.write('Libs: '+plibs.replace(os.path.join(self.petscdir.dir,self.arch.arch),self.installdir.dir)+'\n')
197262119f8SBarry Smith    else:
198473a3ab2SBarry Smith      fd.write('Libs: '+plibs+'\n')
1997ef6e71eSSatish Balay    fd.write('Libs.private: '+self.libraries.toStringNoDupes(self.packagelibs+self.libraries.math+self.compilers.flibs+self.compilers.cxxlibs)+' '+self.compilers.LIBS+'\n')
200473a3ab2SBarry Smith
201262119f8SBarry Smith    fd.close()
202262119f8SBarry Smith    return
203262119f8SBarry Smith
204351d3a41SMatthew G Knepley  def DumpModule(self):
205351d3a41SMatthew G Knepley    ''' Create a module file '''
206af0996ceSBarry Smith    if not os.path.exists(os.path.join(self.petscdir.dir,self.arch.arch,'lib','petsc','conf','modules')):
207af0996ceSBarry Smith      os.makedirs(os.path.join(self.petscdir.dir,self.arch.arch,'lib','petsc','conf','modules'))
208af0996ceSBarry Smith    if not os.path.exists(os.path.join(self.petscdir.dir,self.arch.arch,'lib','petsc','conf','modules','petsc')):
209af0996ceSBarry Smith      os.makedirs(os.path.join(self.petscdir.dir,self.arch.arch,'lib','petsc','conf','modules','petsc'))
210351d3a41SMatthew G Knepley    if self.framework.argDB['prefix']:
2115bb5b263SMatthew G. Knepley      installdir  = self.installdir.dir
21255d606a3SSatish Balay      installarch = ''
21355d606a3SSatish Balay      installpath = os.path.join(installdir,'bin')
214351d3a41SMatthew G Knepley    else:
215351d3a41SMatthew G Knepley      installdir  = self.petscdir.dir
21655d606a3SSatish Balay      installarch = self.arch.arch
21755d606a3SSatish Balay      installpath = os.path.join(installdir,installarch,'bin')+':'+os.path.join(installdir,'bin')
218af0996ceSBarry Smith    fd = open(os.path.join(self.petscdir.dir,self.arch.arch,'lib','petsc','conf','modules','petsc',self.petscdir.version),'w')
219351d3a41SMatthew G Knepley    fd.write('''\
220351d3a41SMatthew G Knepley#%%Module
221351d3a41SMatthew G Knepley
222351d3a41SMatthew G Knepleyproc ModulesHelp { } {
223351d3a41SMatthew G Knepley    puts stderr "This module sets the path and environment variables for petsc-%s"
224351d3a41SMatthew G Knepley    puts stderr "     see http://www.mcs.anl.gov/petsc/ for more information      "
225351d3a41SMatthew G Knepley    puts stderr ""
226351d3a41SMatthew G Knepley}
227351d3a41SMatthew G Knepleymodule-whatis "PETSc - Portable, Extensible Toolkit for Scientific Computation"
228351d3a41SMatthew G Knepley
229351d3a41SMatthew G Knepleyset petsc_dir   %s
230351d3a41SMatthew G Knepleyset petsc_arch  %s
231351d3a41SMatthew G Knepley
232351d3a41SMatthew G Knepleysetenv PETSC_ARCH $petsc_arch
233351d3a41SMatthew G Knepleysetenv PETSC_DIR $petsc_dir
23455d606a3SSatish Balayprepend-path PATH %s
23555d606a3SSatish Balay''' % (self.petscdir.version, installdir, installarch, installpath))
236351d3a41SMatthew G Knepley    fd.close()
237351d3a41SMatthew G Knepley    return
238351d3a41SMatthew G Knepley
239f8833479SBarry Smith  def Dump(self):
240f8833479SBarry Smith    ''' Actually put the values into the configuration files '''
241f8833479SBarry Smith    # eventually everything between -- should be gone
24217f368bcSBarry Smith    if self.mpi.usingMPIUni:
24317f368bcSBarry Smith      #
24417f368bcSBarry Smith      # Remove any MPI/MPICH include files that may have been put here by previous runs of ./configure
2457908f030SMatthew G. Knepley      self.executeShellCommand('rm -rf  '+os.path.join(self.petscdir.dir,self.arch.arch,'include','mpi*')+' '+os.path.join(self.petscdir.dir,self.arch.arch,'include','opa*'), log = self.log)
24617f368bcSBarry Smith
247f8833479SBarry Smith#-----------------------------------------------------------------------------------------------------
248f8833479SBarry Smith
249f8833479SBarry Smith    # Sometimes we need C compiler, even if built with C++
250f8833479SBarry Smith    self.setCompilers.pushLanguage('C')
251f8833479SBarry Smith    self.addMakeMacro('CC_FLAGS',self.setCompilers.getCompilerFlags())
252f8833479SBarry Smith    self.setCompilers.popLanguage()
253f8833479SBarry Smith
25434f774f6SJed Brown    # And sometimes we need a C++ compiler even when PETSc is built with C
25534f774f6SJed Brown    if hasattr(self.compilers, 'CXX'):
25634f774f6SJed Brown      self.setCompilers.pushLanguage('Cxx')
25734f774f6SJed Brown      self.addMakeMacro('CXX_FLAGS',self.setCompilers.getCompilerFlags())
25834f774f6SJed Brown      self.setCompilers.popLanguage()
25934f774f6SJed Brown
260f8833479SBarry Smith    # C preprocessor values
2611315f054SBarry Smith    self.addMakeMacro('CPP_FLAGS',self.setCompilers.CPPFLAGS)
262f8833479SBarry Smith
263f8833479SBarry Smith    # compiler values
264f8833479SBarry Smith    self.setCompilers.pushLanguage(self.languages.clanguage)
265f8833479SBarry Smith    self.addMakeMacro('PCC',self.setCompilers.getCompiler())
266f8833479SBarry Smith    self.addMakeMacro('PCC_FLAGS',self.setCompilers.getCompilerFlags())
267f8833479SBarry Smith    self.setCompilers.popLanguage()
268f8833479SBarry Smith    # .o or .obj
269f8833479SBarry Smith    self.addMakeMacro('CC_SUFFIX','o')
270f8833479SBarry Smith
271f8833479SBarry Smith    # executable linker values
272f8833479SBarry Smith    self.setCompilers.pushLanguage(self.languages.clanguage)
273f8833479SBarry Smith    pcc_linker = self.setCompilers.getLinker()
274f8833479SBarry Smith    self.addMakeMacro('PCC_LINKER',pcc_linker)
275c84a332bSSatish Balay    self.addMakeMacro('PCC_LINKER_FLAGS',self.setCompilers.getLinkerFlags())
276f8833479SBarry Smith    self.setCompilers.popLanguage()
277f8833479SBarry Smith    # '' for Unix, .exe for Windows
278f8833479SBarry Smith    self.addMakeMacro('CC_LINKER_SUFFIX','')
279f8833479SBarry Smith
280f8833479SBarry Smith    if hasattr(self.compilers, 'FC'):
281f8833479SBarry Smith      self.setCompilers.pushLanguage('FC')
282f8833479SBarry Smith      # need FPPFLAGS in config/setCompilers
283f8833479SBarry Smith      self.addDefine('HAVE_FORTRAN','1')
284f8833479SBarry Smith      self.addMakeMacro('FPP_FLAGS',self.setCompilers.CPPFLAGS)
285f8833479SBarry Smith
286f8833479SBarry Smith      # compiler values
287f8833479SBarry Smith      self.addMakeMacro('FC_FLAGS',self.setCompilers.getCompilerFlags())
288f8833479SBarry Smith      self.setCompilers.popLanguage()
289f8833479SBarry Smith      # .o or .obj
290f8833479SBarry Smith      self.addMakeMacro('FC_SUFFIX','o')
291f8833479SBarry Smith
292f8833479SBarry Smith      # executable linker values
293f8833479SBarry Smith      self.setCompilers.pushLanguage('FC')
294f8833479SBarry Smith      # Cannot have NAG f90 as the linker - so use pcc_linker as fc_linker
295f8833479SBarry Smith      fc_linker = self.setCompilers.getLinker()
2967fca349cSMatthew G. Knepley      if config.setCompilers.Configure.isNAG(fc_linker, self.log):
297f8833479SBarry Smith        self.addMakeMacro('FC_LINKER',pcc_linker)
298f8833479SBarry Smith      else:
299f8833479SBarry Smith        self.addMakeMacro('FC_LINKER',fc_linker)
3006d53d35eSSatish Balay      self.addMakeMacro('FC_LINKER_FLAGS',self.setCompilers.getLinkerFlags())
3013feacd00SBarry Smith      # apple requires this shared library linker flag on SOME versions of the os
3023feacd00SBarry Smith      if self.setCompilers.getLinkerFlags().find('-Wl,-commons,use_dylibs') > -1:
3033feacd00SBarry Smith        self.addMakeMacro('DARWIN_COMMONS_USE_DYLIBS',' -Wl,-commons,use_dylibs ')
304bb82cf9cSSatish Balay      self.setCompilers.popLanguage()
3055d631499SMatthew Knepley
3065d631499SMatthew Knepley      # F90 Modules
3075d631499SMatthew Knepley      if self.setCompilers.fortranModuleIncludeFlag:
3085d631499SMatthew Knepley        self.addMakeMacro('FC_MODULE_FLAG', self.setCompilers.fortranModuleIncludeFlag)
3096ddd6694SSatish Balay      else: # for non-f90 compilers like g77
3106ddd6694SSatish Balay        self.addMakeMacro('FC_MODULE_FLAG', '-I')
311a324c51cSMatthew G Knepley      if self.setCompilers.fortranModuleIncludeFlag:
312a324c51cSMatthew G Knepley        self.addMakeMacro('FC_MODULE_OUTPUT_FLAG', self.setCompilers.fortranModuleOutputFlag)
313f8833479SBarry Smith    else:
314f8833479SBarry Smith      self.addMakeMacro('FC','')
315f8833479SBarry Smith
31646a3958fSBarry Smith    if hasattr(self.compilers, 'CUDAC'):
3177ff2890cSSatish Balay      self.setCompilers.pushLanguage('CUDA')
318d93a25ecSSatish Balay      self.addMakeMacro('CUDAC_FLAGS',self.setCompilers.getCompilerFlags())
3197ff2890cSSatish Balay      self.setCompilers.popLanguage()
3207ff2890cSSatish Balay
321f8833479SBarry Smith    # shared library linker values
322f8833479SBarry Smith    self.setCompilers.pushLanguage(self.languages.clanguage)
323f8833479SBarry Smith    # need to fix BuildSystem to collect these separately
324f8833479SBarry Smith    self.addMakeMacro('SL_LINKER',self.setCompilers.getLinker())
32570db8aa6SSatish Balay    self.addMakeMacro('SL_LINKER_FLAGS','${PCC_LINKER_FLAGS}')
326f8833479SBarry Smith    self.setCompilers.popLanguage()
327f8833479SBarry Smith    # One of 'a', 'so', 'lib', 'dll', 'dylib' (perhaps others also?) depending on the library generator and architecture
328f8833479SBarry Smith    # Note: . is not included in this macro, consistent with AR_LIB_SUFFIX
329f8833479SBarry Smith    if self.setCompilers.sharedLibraryExt == self.setCompilers.AR_LIB_SUFFIX:
330f8833479SBarry Smith      self.addMakeMacro('SL_LINKER_SUFFIX', '')
33146bc77b6SBarry Smith      self.addDefine('SLSUFFIX','""')
332f8833479SBarry Smith    else:
333f8833479SBarry Smith      self.addMakeMacro('SL_LINKER_SUFFIX', self.setCompilers.sharedLibraryExt)
33446bc77b6SBarry Smith      self.addDefine('SLSUFFIX','"'+self.setCompilers.sharedLibraryExt+'"')
335bb82cf9cSSatish Balay
33623e93537SBarry Smith    self.addMakeMacro('SL_LINKER_LIBS','${PETSC_EXTERNAL_LIB_BASIC}')
337bb82cf9cSSatish Balay
338f8833479SBarry Smith#-----------------------------------------------------------------------------------------------------
339f8833479SBarry Smith
340f8833479SBarry Smith    # CONLY or CPP. We should change the PETSc makefiles to do this better
341f8833479SBarry Smith    if self.languages.clanguage == 'C': lang = 'CONLY'
342f8833479SBarry Smith    else: lang = 'CXXONLY'
343f8833479SBarry Smith    self.addMakeMacro('PETSC_LANGUAGE',lang)
344f8833479SBarry Smith
345f8833479SBarry Smith    # real or complex
346f8833479SBarry Smith    self.addMakeMacro('PETSC_SCALAR',self.scalartypes.scalartype)
347f8833479SBarry Smith    # double or float
348f8833479SBarry Smith    self.addMakeMacro('PETSC_PRECISION',self.scalartypes.precision)
349f8833479SBarry Smith
350f8833479SBarry Smith    if self.framework.argDB['with-batch']:
351f8833479SBarry Smith      self.addMakeMacro('PETSC_WITH_BATCH','1')
352f8833479SBarry Smith
353f8833479SBarry Smith    # Test for compiler-specific macros that need to be defined.
3547fca349cSMatthew G. Knepley    if self.setCompilers.isCrayVector('CC', self.log):
355b409243cSBarry Smith      self.addDefine('HAVE_CRAY_VECTOR','1')
356f8833479SBarry Smith
357f8833479SBarry Smith#-----------------------------------------------------------------------------------------------------
358df1a78b3SMatthew G Knepley    if self.functions.haveFunction('gethostbyname') and self.functions.haveFunction('socket') and self.headers.haveHeader('netinet/in.h'):
359f8833479SBarry Smith      self.addDefine('USE_SOCKET_VIEWER','1')
36080e3883bSBarry Smith      if self.checkCompile('#include <sys/socket.h>','setsockopt(0,SOL_SOCKET,SO_REUSEADDR,0,0)'):
36180e3883bSBarry Smith        self.addDefine('HAVE_SO_REUSEADDR','1')
362f8833479SBarry Smith
363f8833479SBarry Smith#-----------------------------------------------------------------------------------------------------
364a6cc6bb1SBarry Smith    # print include and lib for makefiles
365f8833479SBarry Smith    self.framework.packages.reverse()
366a6cc6bb1SBarry Smith    includes = [os.path.join(self.petscdir.dir,'include'),os.path.join(self.petscdir.dir,self.arch.arch,'include')]
367996b3231SBarry Smith    libs = []
368f8833479SBarry Smith    for i in self.framework.packages:
369898a086dSBarry Smith      if i.useddirectly:
370eeb16384SBarry Smith        self.addDefine('HAVE_'+i.PACKAGE.replace('-','_'), 1)  # ONLY list package if it is used directly by PETSc (and not only by another package)
371f8833479SBarry Smith      if not isinstance(i.lib, list):
372f8833479SBarry Smith        i.lib = [i.lib]
3734d02c0d4SBarry Smith      if i.linkedbypetsc: libs.extend(i.lib)
374eeb16384SBarry Smith      self.addMakeMacro(i.PACKAGE.replace('-','_')+'_LIB', self.libraries.toStringNoDupes(i.lib))
375f8833479SBarry Smith      if hasattr(i,'include'):
376f8833479SBarry Smith        if not isinstance(i.include,list):
377f8833479SBarry Smith          i.include = [i.include]
378ac9e4c42SSatish Balay        includes.extend(i.include)
379eeb16384SBarry Smith        self.addMakeMacro(i.PACKAGE.replace('-','_')+'_INCLUDE',self.headers.toStringNoDupes(i.include))
380473a3ab2SBarry Smith    self.packagelibs = libs
3812df986feSBarry Smith    if self.framework.argDB['with-single-library']:
3821315f054SBarry Smith      self.alllibs = self.libraries.toStringNoDupes(['-L'+os.path.join(self.petscdir.dir,self.arch.arch,'lib'),' -lpetsc']+libs+self.libraries.math+self.compilers.flibs+self.compilers.cxxlibs)+' '+self.compilers.LIBS
383262119f8SBarry Smith      self.addMakeMacro('PETSC_WITH_EXTERNAL_LIB',self.alllibs)
38491bb3077SSatish Balay    else:
3851315f054SBarry Smith      self.alllibs = self.libraries.toStringNoDupes(['-L'+os.path.join(self.petscdir.dir,self.arch.arch,'lib'),'-lpetscts -lpetscsnes -lpetscksp -lpetscdm -lpetscmat -lpetscvec -lpetscsys']+libs+self.libraries.math+self.compilers.flibs+self.compilers.cxxlibs)+' '+self.compilers.LIBS
3861315f054SBarry Smith    self.PETSC_EXTERNAL_LIB_BASIC = self.libraries.toStringNoDupes(libs+self.libraries.math+self.compilers.flibs+self.compilers.cxxlibs)+' '+self.compilers.LIBS
3871026b6b4SSatish Balay    if self.framework.argDB['prefix'] and self.setCompilers.CSharedLinkerFlag not in ['-L']:
3885bb5b263SMatthew G. Knepley      lib_basic = self.PETSC_EXTERNAL_LIB_BASIC.replace(self.setCompilers.CSharedLinkerFlag+os.path.join(self.petscdir.dir,self.arch.arch,'lib'),self.setCompilers.CSharedLinkerFlag+os.path.join(self.installdir.dir,'lib'))
3891026b6b4SSatish Balay    else:
3901026b6b4SSatish Balay      lib_basic = self.PETSC_EXTERNAL_LIB_BASIC
3911026b6b4SSatish Balay    self.addMakeMacro('PETSC_EXTERNAL_LIB_BASIC',lib_basic)
392262119f8SBarry Smith    self.allincludes = self.headers.toStringNoDupes(includes)
393262119f8SBarry Smith    self.addMakeMacro('PETSC_CC_INCLUDES',self.allincludes)
394262119f8SBarry Smith    self.PETSC_CC_INCLUDES = self.allincludes
395cbd5cc15SBarry Smith    if hasattr(self.compilers, 'FC'):
396208c3fd5SBarry Smith      if self.compilers.fortranIsF90:
39743a63bfbSSatish Balay        self.addMakeMacro('PETSC_FC_INCLUDES',self.headers.toStringNoDupes(includes,includes))
39830d43657SSatish Balay      else:
39930d43657SSatish Balay        self.addMakeMacro('PETSC_FC_INCLUDES',self.headers.toStringNoDupes(includes))
400f8833479SBarry Smith
4015bb5b263SMatthew G. Knepley    self.addMakeMacro('DESTDIR',self.installdir.dir)
4025bb5b263SMatthew G. Knepley    self.addDefine('LIB_DIR','"'+os.path.join(self.installdir.dir,'lib')+'"')
403f8833479SBarry Smith
4040f3b21c2SBarry Smith    if self.framework.argDB['with-single-library']:
4050f3b21c2SBarry Smith      # overrides the values set in conf/variables
4060f3b21c2SBarry Smith      self.addMakeMacro('LIBNAME','${INSTALL_LIB_DIR}/libpetsc.${AR_LIB_SUFFIX}')
40757cb31baSSatish Balay      self.addMakeMacro('SHLIBS','libpetsc')
408bccf1c12SBarry Smith      self.addMakeMacro('PETSC_LIB_BASIC','-lpetsc')
409797063a9SSatish Balay      self.addMakeMacro('PETSC_KSP_LIB_BASIC','-lpetsc')
410797063a9SSatish Balay      self.addMakeMacro('PETSC_TS_LIB_BASIC','-lpetsc')
411b0a7d7e7SSatish Balay      self.addMakeMacro('PETSC_TAO_LIB_BASIC','-lpetsc')
412bb84e0fdSBarry Smith      self.addDefine('USE_SINGLE_LIBRARY', '1')
4132df986feSBarry Smith      if self.sharedlibraries.useShared:
414ea820d49SSatish Balay        self.addMakeMacro('PETSC_SYS_LIB','${C_SH_LIB_PATH} ${PETSC_WITH_EXTERNAL_LIB}')
415ea820d49SSatish Balay        self.addMakeMacro('PETSC_VEC_LIB','${C_SH_LIB_PATH} ${PETSC_WITH_EXTERNAL_LIB}')
416ea820d49SSatish Balay        self.addMakeMacro('PETSC_MAT_LIB','${C_SH_LIB_PATH} ${PETSC_WITH_EXTERNAL_LIB}')
417ea820d49SSatish Balay        self.addMakeMacro('PETSC_DM_LIB','${C_SH_LIB_PATH} ${PETSC_WITH_EXTERNAL_LIB}')
418ea820d49SSatish Balay        self.addMakeMacro('PETSC_KSP_LIB','${C_SH_LIB_PATH} ${PETSC_WITH_EXTERNAL_LIB}')
419ea820d49SSatish Balay        self.addMakeMacro('PETSC_SNES_LIB','${C_SH_LIB_PATH} ${PETSC_WITH_EXTERNAL_LIB}')
420ea820d49SSatish Balay        self.addMakeMacro('PETSC_TS_LIB','${C_SH_LIB_PATH} ${PETSC_WITH_EXTERNAL_LIB}')
421b0a7d7e7SSatish Balay        self.addMakeMacro('PETSC_TAO_LIB','${C_SH_LIB_PATH} ${PETSC_WITH_EXTERNAL_LIB}')
422fdb87e33SJed Brown        self.addMakeMacro('PETSC_CHARACTERISTIC_LIB','${C_SH_LIB_PATH} ${PETSC_WITH_EXTERNAL_LIB}')
423ea820d49SSatish Balay        self.addMakeMacro('PETSC_LIB','${C_SH_LIB_PATH} ${PETSC_WITH_EXTERNAL_LIB}')
424ea820d49SSatish Balay        self.addMakeMacro('PETSC_CONTRIB','${C_SH_LIB_PATH} ${PETSC_WITH_EXTERNAL_LIB}')
4252df986feSBarry Smith      else:
426ea820d49SSatish Balay        self.addMakeMacro('PETSC_SYS_LIB','${PETSC_WITH_EXTERNAL_LIB}')
427ea820d49SSatish Balay        self.addMakeMacro('PETSC_VEC_LIB','${PETSC_WITH_EXTERNAL_LIB}')
428ea820d49SSatish Balay        self.addMakeMacro('PETSC_MAT_LIB','${PETSC_WITH_EXTERNAL_LIB}')
429ea820d49SSatish Balay        self.addMakeMacro('PETSC_DM_LIB','${PETSC_WITH_EXTERNAL_LIB}')
430ea820d49SSatish Balay        self.addMakeMacro('PETSC_KSP_LIB','${PETSC_WITH_EXTERNAL_LIB}')
431ea820d49SSatish Balay        self.addMakeMacro('PETSC_SNES_LIB','${PETSC_WITH_EXTERNAL_LIB}')
432ea820d49SSatish Balay        self.addMakeMacro('PETSC_TS_LIB','${PETSC_WITH_EXTERNAL_LIB}')
433b0a7d7e7SSatish Balay        self.addMakeMacro('PETSC_TAO_LIB','${PETSC_WITH_EXTERNAL_LIB}')
434fdb87e33SJed Brown        self.addMakeMacro('PETSC_CHARACTERISTIC_LIB','${PETSC_WITH_EXTERNAL_LIB}')
435ea820d49SSatish Balay        self.addMakeMacro('PETSC_LIB','${PETSC_WITH_EXTERNAL_LIB}')
436ea820d49SSatish Balay        self.addMakeMacro('PETSC_CONTRIB','${PETSC_WITH_EXTERNAL_LIB}')
4370f3b21c2SBarry Smith
438f8833479SBarry Smith    if not os.path.exists(os.path.join(self.petscdir.dir,self.arch.arch,'lib')):
439f8833479SBarry Smith      os.makedirs(os.path.join(self.petscdir.dir,self.arch.arch,'lib'))
440f8833479SBarry Smith
441f8833479SBarry Smith    # add a makefile entry for configure options
442f8833479SBarry Smith    self.addMakeMacro('CONFIGURE_OPTIONS', self.framework.getOptionsString(['configModules', 'optionsModule']).replace('\"','\\"'))
443f8833479SBarry Smith    return
444f8833479SBarry Smith
445f8833479SBarry Smith  def dumpConfigInfo(self):
446f8833479SBarry Smith    import time
447f8833479SBarry Smith    fd = file(os.path.join(self.arch.arch,'include','petscconfiginfo.h'),'w')
448f8833479SBarry Smith    fd.write('static const char *petscconfigureoptions = "'+self.framework.getOptionsString(['configModules', 'optionsModule']).replace('\"','\\"')+'";\n')
449f8833479SBarry Smith    fd.close()
450f8833479SBarry Smith    return
451f8833479SBarry Smith
4522a4161d9SMatthew G Knepley  def dumpMachineInfo(self):
4532a4161d9SMatthew G Knepley    import platform
4542a4161d9SMatthew G Knepley    import time
45540373944SSatish Balay    import script
456ca77dbeeSGeoffrey Irving    def escape(s):
457ca77dbeeSGeoffrey Irving      return s.replace('"',r'\"').replace(r'\ ',r'\\ ')
4582a4161d9SMatthew G Knepley    fd = file(os.path.join(self.arch.arch,'include','petscmachineinfo.h'),'w')
4592a4161d9SMatthew G Knepley    fd.write('static const char *petscmachineinfo = \"\\n\"\n')
4602a4161d9SMatthew G Knepley    fd.write('\"-----------------------------------------\\n\"\n')
4612a4161d9SMatthew G Knepley    fd.write('\"Libraries compiled on %s on %s \\n\"\n' % (time.ctime(time.time()), platform.node()))
46260acdfe7SSatish Balay    fd.write('\"Machine characteristics: %s\\n\"\n' % (platform.platform()))
463ca77dbeeSGeoffrey Irving    fd.write('\"Using PETSc directory: %s\\n\"\n' % (escape(self.petscdir.dir)))
464ca77dbeeSGeoffrey Irving    fd.write('\"Using PETSc arch: %s\\n\"\n' % (escape(self.arch.arch)))
465cdec380aSBarry Smith    fd.write('\"-----------------------------------------\\n\";\n')
4662a4161d9SMatthew G Knepley    fd.write('static const char *petsccompilerinfo = \"\\n\"\n')
4672a4161d9SMatthew G Knepley    self.setCompilers.pushLanguage(self.languages.clanguage)
468ca77dbeeSGeoffrey Irving    fd.write('\"Using C compiler: %s %s ${COPTFLAGS} ${CFLAGS}\\n\"\n' % (escape(self.setCompilers.getCompiler()), escape(self.setCompilers.getCompilerFlags())))
4692a4161d9SMatthew G Knepley    self.setCompilers.popLanguage()
4708782282cSMatthew G Knepley    if hasattr(self.compilers, 'FC'):
4712a4161d9SMatthew G Knepley      self.setCompilers.pushLanguage('FC')
472ca77dbeeSGeoffrey Irving      fd.write('\"Using Fortran compiler: %s %s ${FOPTFLAGS} ${FFLAGS} %s\\n\"\n' % (escape(self.setCompilers.getCompiler()), escape(self.setCompilers.getCompilerFlags()), escape(self.setCompilers.CPPFLAGS)))
4732a4161d9SMatthew G Knepley      self.setCompilers.popLanguage()
474cdec380aSBarry Smith    fd.write('\"-----------------------------------------\\n\";\n')
4752a4161d9SMatthew G Knepley    fd.write('static const char *petsccompilerflagsinfo = \"\\n\"\n')
476ca77dbeeSGeoffrey Irving    fd.write('\"Using include paths: %s %s %s\\n\"\n' % ('-I'+escape(os.path.join(self.petscdir.dir, self.arch.arch, 'include')), '-I'+escape(os.path.join(self.petscdir.dir, 'include')), escape(self.PETSC_CC_INCLUDES)))
477cdec380aSBarry Smith    fd.write('\"-----------------------------------------\\n\";\n')
4782a4161d9SMatthew G Knepley    fd.write('static const char *petsclinkerinfo = \"\\n\"\n')
4792a4161d9SMatthew G Knepley    self.setCompilers.pushLanguage(self.languages.clanguage)
480ca77dbeeSGeoffrey Irving    fd.write('\"Using C linker: %s\\n\"\n' % (escape(self.setCompilers.getLinker())))
4812a4161d9SMatthew G Knepley    self.setCompilers.popLanguage()
4828782282cSMatthew G Knepley    if hasattr(self.compilers, 'FC'):
4832a4161d9SMatthew G Knepley      self.setCompilers.pushLanguage('FC')
484ca77dbeeSGeoffrey Irving      fd.write('\"Using Fortran linker: %s\\n\"\n' % (escape(self.setCompilers.getLinker())))
4852a4161d9SMatthew G Knepley      self.setCompilers.popLanguage()
486ad782ac6SSatish Balay    if self.framework.argDB['with-single-library']:
487ad782ac6SSatish Balay      petsclib = '-lpetsc'
488ad782ac6SSatish Balay    else:
489ad782ac6SSatish Balay      petsclib = '-lpetscts -lpetscsnes -lpetscksp -lpetscdm -lpetscmat -lpetscvec -lpetscsys'
490ca77dbeeSGeoffrey Irving    fd.write('\"Using libraries: %s%s -L%s %s %s\\n\"\n' % (escape(self.setCompilers.CSharedLinkerFlag), escape(os.path.join(self.petscdir.dir, self.arch.arch, 'lib')), escape(os.path.join(self.petscdir.dir, self.arch.arch, 'lib')), escape(petsclib), escape(self.PETSC_EXTERNAL_LIB_BASIC)))
491cdec380aSBarry Smith    fd.write('\"-----------------------------------------\\n\";\n')
4922a4161d9SMatthew G Knepley    fd.close()
4932a4161d9SMatthew G Knepley    return
494b2843cf1SBarry Smith
495511a6afcSJed Brown  def dumpCMakeConfig(self):
496511a6afcSJed Brown    '''
497724dfae7SSatish Balay    Writes configuration-specific values to ${PETSC_ARCH}/lib/petsc/conf/PETScBuildInternal.cmake.
498511a6afcSJed Brown    This file is private to PETSc and should not be included by third parties
499511a6afcSJed Brown    (a suitable file can be produced later by CMake, but this is not it).
500511a6afcSJed Brown    '''
501511a6afcSJed Brown    def cmakeset(fd,key,val=True):
502511a6afcSJed Brown      if val == True: val = 'YES'
503511a6afcSJed Brown      if val == False: val = 'NO'
504511a6afcSJed Brown      fd.write('set (' + key + ' ' + val + ')\n')
505511a6afcSJed Brown    def ensurelist(a):
506826d9344SJed Brown      if isinstance(a,list):
507826d9344SJed Brown        return a
508826d9344SJed Brown      else:
509826d9344SJed Brown        return [a]
510511a6afcSJed Brown    def libpath(lib):
511511a6afcSJed Brown      'Returns a search path if that is what this item provides, else "" which will be cleaned out later'
5121b1c0b30SJed Brown      if not isinstance(lib,str): return ''
513511a6afcSJed Brown      if lib.startswith('-L'): return lib[2:]
514511a6afcSJed Brown      if lib.startswith('-R'): return lib[2:]
515511a6afcSJed Brown      if lib.startswith('-Wl,-rpath,'):
516511a6afcSJed Brown        # This case occurs when an external package needs a specific system library that is normally provided by the compiler.
517511a6afcSJed Brown        # In other words, the -L path is builtin to the wrapper or compiler, here we provide it so that CMake can locate the
518511a6afcSJed Brown        # corresponding library.
519511a6afcSJed Brown        return lib[len('-Wl,-rpath,'):]
520511a6afcSJed Brown      if lib.startswith('-'): return ''
521511a6afcSJed Brown      return os.path.dirname(lib)
522511a6afcSJed Brown    def cleanlib(lib):
523511a6afcSJed Brown      'Returns a library name if that is what this item provides, else "" which will be cleaned out later'
52442e8629dSMatthew G Knepley      if not isinstance(lib,str): return ''
525511a6afcSJed Brown      if lib.startswith('-l'):  return lib[2:]
526511a6afcSJed Brown      if lib.startswith('-Wl') or lib.startswith('-L'): return ''
527511a6afcSJed Brown      lib = os.path.splitext(os.path.basename(lib))[0]
528511a6afcSJed Brown      if lib.startswith('lib'): return lib[3:]
529511a6afcSJed Brown      return lib
530511a6afcSJed Brown    def nub(lst):
53106e8c1ddSJed Brown      'Return a list containing the first occurrence of each unique element'
532511a6afcSJed Brown      unique = []
533511a6afcSJed Brown      for elem in lst:
534511a6afcSJed Brown        if elem not in unique and elem != '':
535511a6afcSJed Brown          unique.append(elem)
536511a6afcSJed Brown      return unique
53750937898SJed Brown    try: reversed # reversed was added in Python-2.4
53850937898SJed Brown    except NameError:
53950937898SJed Brown      def reversed(lst): return lst[::-1]
54006e8c1ddSJed Brown    def nublast(lst):
54106e8c1ddSJed Brown      'Return a list containing the last occurrence of each unique entry in a list'
54250937898SJed Brown      return reversed(nub(reversed(lst)))
543511a6afcSJed Brown    def cmakeexpand(varname):
544511a6afcSJed Brown      return r'"${' + varname + r'}"'
545582751aaSJed Brown    def uniqextend(lst,new):
546511a6afcSJed Brown      for x in ensurelist(new):
547582751aaSJed Brown        if x not in lst:
548582751aaSJed Brown          lst.append(x)
549511a6afcSJed Brown    def notstandardinclude(path):
550040257f2SJed Brown      return path not in '/usr/include'.split() # /usr/local/include is not automatically included on FreeBSD
551511a6afcSJed Brown    def writeMacroDefinitions(fd):
552511a6afcSJed Brown      if self.mpi.usingMPIUni:
553511a6afcSJed Brown        cmakeset(fd,'PETSC_HAVE_MPIUNI')
554511a6afcSJed Brown      for pkg in self.framework.packages:
555511a6afcSJed Brown        if pkg.useddirectly:
556eeb16384SBarry Smith          cmakeset(fd,'PETSC_HAVE_' + pkg.PACKAGE.replace('-','_'))
557a23e9343SMatthew G Knepley        for pair in pkg.defines.items():
558440af75fSJed Brown          if pair[0].startswith('HAVE_') and pair[1]:
559a23e9343SMatthew G Knepley            cmakeset(fd, self.framework.getFullDefineName(pkg, pair[0]), pair[1])
560511a6afcSJed Brown      for name,val in self.functions.defines.items():
561511a6afcSJed Brown        cmakeset(fd,'PETSC_'+name,val)
562511a6afcSJed Brown      for dct in [self.defines, self.libraryoptions.defines]:
563511a6afcSJed Brown        for k,v in dct.items():
564511a6afcSJed Brown          if k.startswith('USE_'):
565511a6afcSJed Brown            cmakeset(fd,'PETSC_' + k, v)
566511a6afcSJed Brown      cmakeset(fd,'PETSC_USE_COMPLEX', self.scalartypes.scalartype == 'complex')
567ce63c4c1SBarry Smith      cmakeset(fd,'PETSC_USE_REAL_' + self.scalartypes.precision.upper())
568511a6afcSJed Brown      cmakeset(fd,'PETSC_CLANGUAGE_'+self.languages.clanguage)
569511a6afcSJed Brown      if hasattr(self.compilers, 'FC'):
570511a6afcSJed Brown        cmakeset(fd,'PETSC_HAVE_FORTRAN')
571511a6afcSJed Brown        if self.compilers.fortranIsF90:
572511a6afcSJed Brown          cmakeset(fd,'PETSC_USING_F90')
573876d5c60SBarry Smith        if self.compilers.fortranIsF2003:
574876d5c60SBarry Smith          cmakeset(fd,'PETSC_USING_F2003')
57513c0a95cSJed Brown      if hasattr(self.compilers, 'CXX'):
57613c0a95cSJed Brown        cmakeset(fd,'PETSC_HAVE_CXX')
577511a6afcSJed Brown      if self.sharedlibraries.useShared:
578511a6afcSJed Brown        cmakeset(fd,'BUILD_SHARED_LIBS')
579511a6afcSJed Brown    def writeBuildFlags(fd):
58006e8c1ddSJed Brown      def extendby(lib):
58106e8c1ddSJed Brown        libs = ensurelist(lib)
58206e8c1ddSJed Brown        lib_paths.extend(map(libpath,libs))
58306e8c1ddSJed Brown        lib_libs.extend(map(cleanlib,libs))
584511a6afcSJed Brown      lib_paths = []
585511a6afcSJed Brown      lib_libs  = []
586511a6afcSJed Brown      includes  = []
587511a6afcSJed Brown      libvars   = []
588511a6afcSJed Brown      for pkg in self.framework.packages:
5894d02c0d4SBarry Smith        if pkg.linkedbypetsc:
59006e8c1ddSJed Brown          extendby(pkg.lib)
591040257f2SJed Brown          uniqextend(includes,pkg.include)
59206e8c1ddSJed Brown      extendby(self.libraries.math)
59306e8c1ddSJed Brown      extendby(self.libraries.rt)
59406e8c1ddSJed Brown      extendby(self.compilers.flibs)
59506e8c1ddSJed Brown      extendby(self.compilers.cxxlibs)
59606e8c1ddSJed Brown      extendby(self.compilers.LIBS.split())
59706e8c1ddSJed Brown      for libname in nublast(lib_libs):
598511a6afcSJed Brown        libvar = 'PETSC_' + libname.upper() + '_LIB'
5994c0032a9SSatish Balay        addpath = ''
60006e8c1ddSJed Brown        for lpath in nublast(lib_paths):
6014c0032a9SSatish Balay          addpath += '"' + str(lpath) + '" '
6024c0032a9SSatish Balay        fd.write('find_library (' + libvar + ' ' + libname + ' HINTS ' + addpath + ')\n')
603511a6afcSJed Brown        libvars.append(libvar)
604511a6afcSJed Brown      fd.write('mark_as_advanced (' + ' '.join(libvars) + ')\n')
605511a6afcSJed Brown      fd.write('set (PETSC_PACKAGE_LIBS ' + ' '.join(map(cmakeexpand,libvars)) + ')\n')
606040257f2SJed Brown      includes = filter(notstandardinclude,includes)
607040257f2SJed Brown      fd.write('set (PETSC_PACKAGE_INCLUDES ' + ' '.join(map(lambda i: '"'+i+'"',includes)) + ')\n')
608724dfae7SSatish Balay    fd = open(os.path.join(self.arch.arch,'lib','petsc','conf','PETScBuildInternal.cmake'), 'w')
609511a6afcSJed Brown    writeMacroDefinitions(fd)
610511a6afcSJed Brown    writeBuildFlags(fd)
611511a6afcSJed Brown    fd.close()
612511a6afcSJed Brown    return
613511a6afcSJed Brown
6148b0282a9SJed Brown  def dumpCMakeLists(self):
6158b0282a9SJed Brown    import sys
616994b4dadSSatish Balay    if sys.version_info >= (2,4):
6178b0282a9SJed Brown      import cmakegen
6188b0282a9SJed Brown      try:
619a98e69d2SJed Brown        cmakegen.main(self.petscdir.dir, log=self.framework.log)
6208b0282a9SJed Brown      except (OSError), e:
6218b0282a9SJed Brown        self.framework.logPrint('Generating CMakeLists.txt failed:\n' + str(e))
622aac20692SSatish Balay    else:
623aac20692SSatish Balay      self.framework.logPrint('Skipping cmakegen due to old python version: ' +str(sys.version_info) )
6248b0282a9SJed Brown
6258b0282a9SJed Brown  def cmakeBoot(self):
6268b0282a9SJed Brown    import sys
627ae937f1dSJed Brown    self.cmakeboot_success = False
628994b4dadSSatish Balay    if sys.version_info >= (2,4) and hasattr(self.cmake,'cmake'):
6295a4feeedSSatish Balay      oldRead = self.argDB.readonly
6305a4feeedSSatish Balay      self.argDB.readonly = True
631356464bcSMatthew G Knepley      try:
6328b0282a9SJed Brown        import cmakeboot
633ae937f1dSJed Brown        self.cmakeboot_success = cmakeboot.main(petscdir=self.petscdir.dir,petscarch=self.arch.arch,argDB=self.argDB,framework=self.framework,log=self.framework.log)
6348b0282a9SJed Brown      except (OSError), e:
6358b0282a9SJed Brown        self.framework.logPrint('Booting CMake in PETSC_ARCH failed:\n' + str(e))
636356464bcSMatthew G Knepley      except (ImportError, KeyError), e:
637356464bcSMatthew G Knepley        self.framework.logPrint('Importing cmakeboot failed:\n' + str(e))
6385a4feeedSSatish Balay      self.argDB.readonly = oldRead
6399b12c9c7SJed Brown      if self.cmakeboot_success:
6402f730bc2SKarl Rupp        if hasattr(self.compilers, 'FC') and self.compilers.fortranIsF90 and not self.setCompilers.fortranModuleOutputFlag:
64191f9b906SSatish Balay          self.framework.logPrint('CMake configured successfully, but could not be used by default because of missing fortranModuleOutputFlag\n')
6429b12c9c7SJed Brown        else:
6439b12c9c7SJed Brown          self.framework.logPrint('CMake configured successfully, using as default build\n')
644f7b66a64SJed Brown          self.addMakeMacro('PETSC_BUILD_USING_CMAKE',1)
645aac20692SSatish Balay      else:
6469b12c9c7SJed Brown        self.framework.logPrint('CMake configuration was unsuccessful\n')
6479b12c9c7SJed Brown    else:
648aac20692SSatish Balay      self.framework.logPrint('Skipping cmakeboot due to old python version: ' +str(sys.version_info) )
649356464bcSMatthew G Knepley    return
6508b0282a9SJed Brown
651b2843cf1SBarry Smith  def configurePrefetch(self):
652b2843cf1SBarry Smith    '''Sees if there are any prefetch functions supported'''
6537fca349cSMatthew G. Knepley    if config.setCompilers.Configure.isSolaris(self.log) or self.framework.argDB['with-ios'] or not self.framework.argDB['with-prefetch']:
65493f78423SSatish Balay      self.addDefine('Prefetch(a,b,c)', ' ')
65593f78423SSatish Balay      return
656ec284106SBarry Smith    self.pushLanguage(self.languages.clanguage)
65710699583SJed Brown    if self.checkLink('#include <xmmintrin.h>', 'void *v = 0;_mm_prefetch((const char*)v,_MM_HINT_NTA);\n'):
65850d8bf02SJed Brown      # The Intel Intrinsics manual [1] specifies the prototype
65950d8bf02SJed Brown      #
66050d8bf02SJed Brown      #   void _mm_prefetch(char const *a, int sel);
66150d8bf02SJed Brown      #
66250d8bf02SJed Brown      # but other vendors seem to insist on using subtly different
66350d8bf02SJed Brown      # prototypes, including void* for the pointer, and an enum for
66450d8bf02SJed Brown      # sel.  These are both reasonable changes, but negatively impact
66550d8bf02SJed Brown      # portability.
66650d8bf02SJed Brown      #
66750d8bf02SJed Brown      # [1] http://software.intel.com/file/6373
66850d8bf02SJed Brown      self.addDefine('HAVE_XMMINTRIN_H', 1)
66950d8bf02SJed Brown      self.addDefine('Prefetch(a,b,c)', '_mm_prefetch((const char*)(a),(c))')
67050d8bf02SJed Brown      self.addDefine('PREFETCH_HINT_NTA', '_MM_HINT_NTA')
67150d8bf02SJed Brown      self.addDefine('PREFETCH_HINT_T0',  '_MM_HINT_T0')
67250d8bf02SJed Brown      self.addDefine('PREFETCH_HINT_T1',  '_MM_HINT_T1')
67350d8bf02SJed Brown      self.addDefine('PREFETCH_HINT_T2',  '_MM_HINT_T2')
67450d8bf02SJed Brown    elif self.checkLink('#include <xmmintrin.h>', 'void *v = 0;_mm_prefetch(v,_MM_HINT_NTA);\n'):
67550d8bf02SJed Brown      self.addDefine('HAVE_XMMINTRIN_H', 1)
67650d8bf02SJed Brown      self.addDefine('Prefetch(a,b,c)', '_mm_prefetch((const void*)(a),(c))')
67750d8bf02SJed Brown      self.addDefine('PREFETCH_HINT_NTA', '_MM_HINT_NTA')
67850d8bf02SJed Brown      self.addDefine('PREFETCH_HINT_T0',  '_MM_HINT_T0')
67950d8bf02SJed Brown      self.addDefine('PREFETCH_HINT_T1',  '_MM_HINT_T1')
68050d8bf02SJed Brown      self.addDefine('PREFETCH_HINT_T2',  '_MM_HINT_T2')
68110699583SJed Brown    elif self.checkLink('', 'void *v = 0;__builtin_prefetch(v,0,0);\n'):
68210699583SJed Brown      # From GCC docs: void __builtin_prefetch(const void *addr,int rw,int locality)
68310699583SJed Brown      #
68410699583SJed Brown      #   The value of rw is a compile-time constant one or zero; one
68510699583SJed Brown      #   means that the prefetch is preparing for a write to the memory
68610699583SJed Brown      #   address and zero, the default, means that the prefetch is
68710699583SJed Brown      #   preparing for a read. The value locality must be a compile-time
68810699583SJed Brown      #   constant integer between zero and three. A value of zero means
68910699583SJed Brown      #   that the data has no temporal locality, so it need not be left
69010699583SJed Brown      #   in the cache after the access. A value of three means that the
69110699583SJed Brown      #   data has a high degree of temporal locality and should be left
69210699583SJed Brown      #   in all levels of cache possible. Values of one and two mean,
69310699583SJed Brown      #   respectively, a low or moderate degree of temporal locality.
69410699583SJed Brown      #
69510699583SJed Brown      # Here we adopt Intel's x86/x86-64 naming scheme for the locality
69610699583SJed Brown      # hints.  Using macros for these values in necessary since some
69710699583SJed Brown      # compilers require an enum.
69810699583SJed Brown      self.addDefine('Prefetch(a,b,c)', '__builtin_prefetch((a),(b),(c))')
69910699583SJed Brown      self.addDefine('PREFETCH_HINT_NTA', '0')
70010699583SJed Brown      self.addDefine('PREFETCH_HINT_T0',  '3')
70110699583SJed Brown      self.addDefine('PREFETCH_HINT_T1',  '2')
70210699583SJed Brown      self.addDefine('PREFETCH_HINT_T2',  '1')
703b2843cf1SBarry Smith    else:
704b2843cf1SBarry Smith      self.addDefine('Prefetch(a,b,c)', ' ')
7057d490b44SBarry Smith    self.popLanguage()
706b2843cf1SBarry Smith
70709bc878fSSatish Balay  def configureAtoll(self):
70809bc878fSSatish Balay    '''Checks if atoll exists'''
709436b02dcSSatish Balay    if self.checkLink('#define _POSIX_C_SOURCE 200112L\n#include <stdlib.h>','long v = atoll("25")') or self.checkLink ('#include <stdlib.h>','long v = atoll("25")'):
71009bc878fSSatish Balay       self.addDefine('HAVE_ATOLL', '1')
71109bc878fSSatish Balay
7122400fdedSBarry Smith  def configureUnused(self):
7132400fdedSBarry Smith    '''Sees if __attribute((unused)) is supported'''
7141adaff47SSean Farley    if self.framework.argDB['with-ios']:
7152400fdedSBarry Smith      self.addDefine('UNUSED', ' ')
7162400fdedSBarry Smith      return
7172400fdedSBarry Smith    self.pushLanguage(self.languages.clanguage)
718edf21b64SSatish Balay    if self.checkLink('__attribute((unused)) static int myfunc(__attribute((unused)) void *name){ return 1;}', 'int i = 0;\nint j = myfunc(&i);\ntypedef void* atype;\n__attribute((unused))  atype a;\n'):
7192400fdedSBarry Smith      self.addDefine('UNUSED', '__attribute((unused))')
7202400fdedSBarry Smith    else:
7212400fdedSBarry Smith      self.addDefine('UNUSED', ' ')
7222400fdedSBarry Smith    self.popLanguage()
7232400fdedSBarry Smith
72498ed35c3SBarry Smith  def configureIsatty(self):
72598ed35c3SBarry Smith    '''Check if the Unix C function isatty() works correctly
72698ed35c3SBarry Smith       Actually just assumes it does not work correctly on batch systems'''
72798ed35c3SBarry Smith    if not self.framework.argDB['with-batch']:
72898ed35c3SBarry Smith      self.addDefine('USE_ISATTY',1)
72998ed35c3SBarry Smith
7301ef8df7fSJed Brown  def configureDeprecated(self):
7311ef8df7fSJed Brown    '''Check if __attribute((deprecated)) is supported'''
7321ef8df7fSJed Brown    self.pushLanguage(self.languages.clanguage)
73359a26b54SJed Brown    ## Recent versions of gcc and clang support __attribute((deprecated("string argument"))), which is very useful, but
73459a26b54SJed Brown    ## Intel has conspired to make a supremely environment-sensitive compiler.  The Intel compiler looks at the gcc
73559a26b54SJed Brown    ## executable in the environment to determine the language compatibility that it should attempt to emulate.  Some
73659a26b54SJed Brown    ## important Cray installations have built PETSc using the Intel compiler, but with a newer gcc module loaded (e.g.,
737df3898eeSBarry Smith    ## 4.7).  Thus at PETSc configure time, the Intel compiler decides to support the string argument, but the gcc
73859a26b54SJed Brown    ## found in the default user environment is older and does not support the argument.  If GCC and Intel were cool
73959a26b54SJed Brown    ## like Clang and supported __has_attribute, we could avoid configure tests entirely, but they don't.  And that is
74059a26b54SJed Brown    ## why we can't have nice things.
74159a26b54SJed Brown    #
74259a26b54SJed Brown    # if self.checkCompile("""__attribute((deprecated("Why you shouldn't use myfunc"))) static int myfunc(void) { return 1;}""", ''):
74359a26b54SJed Brown    #   self.addDefine('DEPRECATED(why)', '__attribute((deprecated(why)))')
74459a26b54SJed Brown    if self.checkCompile("""__attribute((deprecated)) static int myfunc(void) { return 1;}""", ''):
74559a26b54SJed Brown      self.addDefine('DEPRECATED(why)', '__attribute((deprecated))')
7461ef8df7fSJed Brown    else:
74747644db9SJed Brown      self.addDefine('DEPRECATED(why)', ' ')
7481ef8df7fSJed Brown    self.popLanguage()
7491ef8df7fSJed Brown
75018f41590SBarry Smith  def configureAlign(self):
75118f41590SBarry Smith    '''Check if __attribute(align) is supported'''
752752d89a4SSatish Balay    filename = 'conftestalign'
753752d89a4SSatish Balay    includes = '''
754752d89a4SSatish Balay#include <sys/types.h>
755752d89a4SSatish Balay#if STDC_HEADERS
756752d89a4SSatish Balay#include <stdlib.h>
757752d89a4SSatish Balay#include <stdio.h>
758752d89a4SSatish Balay#include <stddef.h>
759752d89a4SSatish Balay#endif\n'''
760752d89a4SSatish Balay    body     = '''
761752d89a4SSatish Balaystruct mystruct {int myint;} __attribute((aligned(16)));
762752d89a4SSatish BalayFILE *f = fopen("'''+filename+'''", "w");
763752d89a4SSatish Balayif (!f) exit(1);
764752d89a4SSatish Balayfprintf(f, "%lu\\n", (unsigned long)sizeof(struct mystruct));
765752d89a4SSatish Balay'''
766752d89a4SSatish Balay    if 'known-has-attribute-aligned' in self.argDB:
767752d89a4SSatish Balay      if self.argDB['known-has-attribute-aligned']:
768752d89a4SSatish Balay        size = 16
76918f41590SBarry Smith      else:
770752d89a4SSatish Balay        size = -3
771752d89a4SSatish Balay    elif not self.argDB['with-batch']:
772752d89a4SSatish Balay      self.pushLanguage(self.languages.clanguage)
773752d89a4SSatish Balay      try:
774752d89a4SSatish Balay        if self.checkRun(includes, body) and os.path.exists(filename):
775752d89a4SSatish Balay          f    = file(filename)
776752d89a4SSatish Balay          size = int(f.read())
777752d89a4SSatish Balay          f.close()
778752d89a4SSatish Balay          os.remove(filename)
7790045a809SSatish Balay        else:
7800045a809SSatish Balay          size = -4
781752d89a4SSatish Balay      except:
782752d89a4SSatish Balay        size = -1
783752d89a4SSatish Balay        self.framework.logPrint('Error checking attribute(aligned)')
78418f41590SBarry Smith      self.popLanguage()
785752d89a4SSatish Balay    else:
786752d89a4SSatish Balay      self.framework.addBatchInclude(['#include <stdlib.h>', '#include <stdio.h>', '#include <sys/types.h>','struct mystruct {int myint;} __attribute((aligned(16)));'])
787752d89a4SSatish Balay      self.framework.addBatchBody('fprintf(output, "  \'--known-has-attribute-aligned=%d\',\\n", sizeof(struct mystruct)==16);')
788752d89a4SSatish Balay      size = -2
789752d89a4SSatish Balay    if size == 16:
790752d89a4SSatish Balay      self.addDefine('ATTRIBUTEALIGNED(size)', '__attribute((aligned (size)))')
791752d89a4SSatish Balay      self.addDefine('HAVE_ATTRIBUTEALIGNED', 1)
792752d89a4SSatish Balay    else:
793752d89a4SSatish Balay      self.framework.logPrint('incorrect alignment. Found alignment:'+ str(size))
794752d89a4SSatish Balay      self.addDefine('ATTRIBUTEALIGNED(size)', ' ')
795752d89a4SSatish Balay    return
79618f41590SBarry Smith
7979800092aSJed Brown  def configureExpect(self):
7989800092aSJed Brown    '''Sees if the __builtin_expect directive is supported'''
7999800092aSJed Brown    self.pushLanguage(self.languages.clanguage)
8009800092aSJed Brown    if self.checkLink('', 'if (__builtin_expect(0,1)) return 1;'):
8019800092aSJed Brown      self.addDefine('HAVE_BUILTIN_EXPECT', 1)
8029800092aSJed Brown    self.popLanguage()
8039800092aSJed Brown
80453c77d0aSJed Brown  def configureFunctionName(self):
8051ec50b02SJed Brown    '''Sees if the compiler supports __func__ or a variant.  Falls back
8061ec50b02SJed Brown    on __FUNCT__ which PETSc source defines, but most users do not, thus
8071ec50b02SJed Brown    stack traces through user code are better when the compiler's
8081ec50b02SJed Brown    variant is used.'''
8091ec50b02SJed Brown    def getFunctionName(lang):
8101ec50b02SJed Brown      name = '__FUNCT__'
8111ec50b02SJed Brown      self.pushLanguage(lang)
81253c77d0aSJed Brown      if self.checkLink('', "if (__func__[0] != 'm') return 1;"):
8131ec50b02SJed Brown        name = '__func__'
81453c77d0aSJed Brown      elif self.checkLink('', "if (__FUNCTION__[0] != 'm') return 1;"):
8151ec50b02SJed Brown        name = '__FUNCTION__'
8161ec50b02SJed Brown      self.popLanguage()
8171ec50b02SJed Brown      return name
8181ec50b02SJed Brown    langs = []
819628773c9SSatish Balay
820628773c9SSatish Balay    self.addDefine('FUNCTION_NAME_C', getFunctionName('C'))
821628773c9SSatish Balay    if hasattr(self.compilers, 'CXX'):
822628773c9SSatish Balay      self.addDefine('FUNCTION_NAME_CXX', getFunctionName('Cxx'))
82312607bf0SSatish Balay    else:
82412607bf0SSatish Balay      self.addDefine('FUNCTION_NAME_CXX', '__FUNCT__')
82553c77d0aSJed Brown
826753ebd1dSJed Brown  def configureIntptrt(self):
827753ebd1dSJed Brown    '''Determine what to use for uintptr_t'''
828753ebd1dSJed Brown    def staticAssertSizeMatchesVoidStar(inc,typename):
829753ebd1dSJed Brown      # The declaration is an error if either array size is negative.
830753ebd1dSJed Brown      # It should be okay to use an int that is too large, but it would be very unlikely for this to be the case
831d26187a0SJed Brown      return self.checkCompile(inc, ('#define STATIC_ASSERT(cond) char negative_length_if_false[2*(!!(cond))-1]\n'
832979939cdSSatish Balay                                     + 'STATIC_ASSERT(sizeof(void*) == sizeof(%s));'%typename))
833753ebd1dSJed Brown    self.pushLanguage(self.languages.clanguage)
834753ebd1dSJed Brown    if self.checkCompile('#include <stdint.h>', 'int x; uintptr_t i = (uintptr_t)&x;'):
835753ebd1dSJed Brown      self.addDefine('UINTPTR_T', 'uintptr_t')
836753ebd1dSJed Brown    elif staticAssertSizeMatchesVoidStar('','unsigned long long'):
837753ebd1dSJed Brown      self.addDefine('UINTPTR_T', 'unsigned long long')
838753ebd1dSJed Brown    elif staticAssertSizeMatchesVoidStar('#include <stdlib.h>','size_t') or staticAssertSizeMatchesVoidStar('#include <string.h>', 'size_t'):
839753ebd1dSJed Brown      self.addDefine('UINTPTR_T', 'size_t')
840c82284b1SJed Brown    elif staticAssertSizeMatchesVoidStar('','unsigned long'):
841c82284b1SJed Brown      self.addDefine('UINTPTR_T', 'unsigned long')
8422d1b7972SSatish Balay    elif staticAssertSizeMatchesVoidStar('','unsigned'):
843753ebd1dSJed Brown      self.addDefine('UINTPTR_T', 'unsigned')
844d26187a0SJed Brown    else:
845d26187a0SJed Brown      raise RuntimeError('Could not find any unsigned integer type matching void*')
846753ebd1dSJed Brown    self.popLanguage()
847753ebd1dSJed Brown
848ed938b00SJed Brown  def configureRTLDDefault(self):
849bfef2c86SBarry Smith    if self.checkCompile('#include <dlfcn.h>\n void *ptr =  RTLD_DEFAULT;'):
850bfef2c86SBarry Smith      self.addDefine('RTLD_DEFAULT','1')
851f8833479SBarry Smith    return
852f8833479SBarry Smith
853f8833479SBarry Smith  def configureSolaris(self):
854f8833479SBarry Smith    '''Solaris specific stuff'''
855f8833479SBarry Smith    if os.path.isdir(os.path.join('/usr','ucblib')):
856f8833479SBarry Smith      try:
857f8833479SBarry Smith        flag = getattr(self.setCompilers, self.language[-1]+'SharedLinkerFlag')
858f8833479SBarry Smith      except AttributeError:
859f8833479SBarry Smith        flag = None
860f8833479SBarry Smith      if flag is None:
861f8833479SBarry Smith        self.compilers.LIBS += ' -L/usr/ucblib'
862f8833479SBarry Smith      else:
863f8833479SBarry Smith        self.compilers.LIBS += ' '+flag+'/usr/ucblib'
864f8833479SBarry Smith    return
865f8833479SBarry Smith
866f8833479SBarry Smith  def configureLinux(self):
867f8833479SBarry Smith    '''Linux specific stuff'''
8689f15855cSMatthew G Knepley    # TODO: Test for this by mallocing an odd number of floats and checking the address
869f8833479SBarry Smith    self.addDefine('HAVE_DOUBLE_ALIGN_MALLOC', 1)
870f8833479SBarry Smith    return
871f8833479SBarry Smith
872f8833479SBarry Smith  def configureWin32(self):
873f8833479SBarry Smith    '''Win32 non-cygwin specific stuff'''
874f8833479SBarry Smith    kernel32=0
875f8833479SBarry Smith    if self.libraries.add('Kernel32.lib','GetComputerName',prototype='#include <Windows.h>', call='GetComputerName(NULL,NULL);'):
876f8833479SBarry Smith      self.addDefine('HAVE_WINDOWS_H',1)
877f8833479SBarry Smith      self.addDefine('HAVE_GETCOMPUTERNAME',1)
878f8833479SBarry Smith      kernel32=1
879f8833479SBarry Smith    elif self.libraries.add('kernel32','GetComputerName',prototype='#include <Windows.h>', call='GetComputerName(NULL,NULL);'):
880f8833479SBarry Smith      self.addDefine('HAVE_WINDOWS_H',1)
881f8833479SBarry Smith      self.addDefine('HAVE_GETCOMPUTERNAME',1)
882f8833479SBarry Smith      kernel32=1
883f8833479SBarry Smith    if kernel32:
884eed94e11SSatish Balay      if self.framework.argDB['with-windows-graphics']:
885eed94e11SSatish Balay        self.addDefine('USE_WINDOWS_GRAPHICS',1)
886f8833479SBarry Smith      if self.checkLink('#include <Windows.h>','LoadLibrary(0)'):
887f8833479SBarry Smith        self.addDefine('HAVE_LOADLIBRARY',1)
888b50f6d9eSLisandro Dalcin      if self.checkLink('#include <Windows.h>','GetProcAddress(0,0)'):
889b50f6d9eSLisandro Dalcin        self.addDefine('HAVE_GETPROCADDRESS',1)
890b50f6d9eSLisandro Dalcin      if self.checkLink('#include <Windows.h>','FreeLibrary(0)'):
891b50f6d9eSLisandro Dalcin        self.addDefine('HAVE_FREELIBRARY',1)
892a21658a3SLisandro Dalcin      if self.checkLink('#include <Windows.h>','GetLastError()'):
893a21658a3SLisandro Dalcin        self.addDefine('HAVE_GETLASTERROR',1)
894a21658a3SLisandro Dalcin      if self.checkLink('#include <Windows.h>','SetLastError(0)'):
895a21658a3SLisandro Dalcin        self.addDefine('HAVE_SETLASTERROR',1)
896f8833479SBarry Smith      if self.checkLink('#include <Windows.h>\n','QueryPerformanceCounter(0);\n'):
897bea725cfSBarry Smith        self.addDefine('USE_MICROSOFT_TIME',1)
898f8833479SBarry Smith    if self.libraries.add('Advapi32.lib','GetUserName',prototype='#include <Windows.h>', call='GetUserName(NULL,NULL);'):
899f8833479SBarry Smith      self.addDefine('HAVE_GET_USER_NAME',1)
900f8833479SBarry Smith    elif self.libraries.add('advapi32','GetUserName',prototype='#include <Windows.h>', call='GetUserName(NULL,NULL);'):
901f8833479SBarry Smith      self.addDefine('HAVE_GET_USER_NAME',1)
902f8833479SBarry Smith
903f8833479SBarry Smith    if not self.libraries.add('User32.lib','GetDC',prototype='#include <Windows.h>',call='GetDC(0);'):
904f8833479SBarry Smith      self.libraries.add('user32','GetDC',prototype='#include <Windows.h>',call='GetDC(0);')
905f8833479SBarry Smith    if not self.libraries.add('Gdi32.lib','CreateCompatibleDC',prototype='#include <Windows.h>',call='CreateCompatibleDC(0);'):
906f8833479SBarry Smith      self.libraries.add('gdi32','CreateCompatibleDC',prototype='#include <Windows.h>',call='CreateCompatibleDC(0);')
907f8833479SBarry Smith
908f8833479SBarry Smith    self.types.check('int32_t', 'int')
909f8833479SBarry Smith    if not self.checkCompile('#include <sys/types.h>\n','uid_t u;\n'):
910f8833479SBarry Smith      self.addTypedef('int', 'uid_t')
911f8833479SBarry Smith      self.addTypedef('int', 'gid_t')
912f8833479SBarry Smith    if not self.checkLink('#if defined(PETSC_HAVE_UNISTD_H)\n#include <unistd.h>\n#endif\n','int a=R_OK;\n'):
913f8833479SBarry Smith      self.framework.addDefine('R_OK', '04')
914f8833479SBarry Smith      self.framework.addDefine('W_OK', '02')
915f8833479SBarry Smith      self.framework.addDefine('X_OK', '01')
916f8833479SBarry Smith    if not self.checkLink('#include <sys/stat.h>\n','int a=0;\nif (S_ISDIR(a)){}\n'):
917f8833479SBarry Smith      self.framework.addDefine('S_ISREG(a)', '(((a)&_S_IFMT) == _S_IFREG)')
918f8833479SBarry Smith      self.framework.addDefine('S_ISDIR(a)', '(((a)&_S_IFMT) == _S_IFDIR)')
919f8833479SBarry Smith    if self.checkCompile('#include <Windows.h>\n','LARGE_INTEGER a;\nDWORD b=a.u.HighPart;\n'):
920f8833479SBarry Smith      self.addDefine('HAVE_LARGE_INTEGER_U',1)
921f8833479SBarry Smith
922f8833479SBarry Smith    # Windows requires a Binary file creation flag when creating/opening binary files.  Is a better test in order?
923ef2cfba3SSatish Balay    if self.checkCompile('#include <Windows.h>\n#include <fcntl.h>\n', 'int flags = O_BINARY;'):
924f8833479SBarry Smith      self.addDefine('HAVE_O_BINARY',1)
925f8833479SBarry Smith
926f8833479SBarry Smith    if self.compilers.CC.find('win32fe') >= 0:
927f8833479SBarry Smith      self.addDefine('PATH_SEPARATOR','\';\'')
928f8833479SBarry Smith      self.addDefine('DIR_SEPARATOR','\'\\\\\'')
929f8833479SBarry Smith      self.addDefine('REPLACE_DIR_SEPARATOR','\'/\'')
930f8833479SBarry Smith      self.addDefine('CANNOT_START_DEBUGGER',1)
9317908f030SMatthew G. Knepley      (petscdir,error,status) = self.executeShellCommand('cygpath -w '+self.petscdir.dir, log = self.log)
93234531a4dSSatish Balay      self.addDefine('DIR','"'+petscdir.replace('\\','\\\\')+'"')
933*e433681fSSatish Balay      (petscdir,error,status) = self.executeShellCommand('cygpath -m '+self.petscdir.dir, log = self.log)
934*e433681fSSatish Balay      self.addMakeMacro('wPETSC_DIR',petscdir)
935f8833479SBarry Smith    else:
936f8833479SBarry Smith      self.addDefine('PATH_SEPARATOR','\':\'')
937f8833479SBarry Smith      self.addDefine('REPLACE_DIR_SEPARATOR','\'\\\\\'')
938f8833479SBarry Smith      self.addDefine('DIR_SEPARATOR','\'/\'')
93934531a4dSSatish Balay      self.addDefine('DIR', '"'+self.petscdir.dir+'"')
940*e433681fSSatish Balay      self.addMakeMacro('wPETSC_DIR',self.petscdir.dir)
941f8833479SBarry Smith    return
942f8833479SBarry Smith
943f8833479SBarry Smith#-----------------------------------------------------------------------------------------------------
944b10d012aSSatish Balay  def configureCygwinBrokenPipe(self):
945b10d012aSSatish Balay    '''Cygwin version <= 1.7.18 had issues with pipes and long commands invoked from gnu-make
946b10d012aSSatish Balay    http://cygwin.com/ml/cygwin/2013-05/msg00340.html '''
9477fca349cSMatthew G. Knepley    if config.setCompilers.Configure.isCygwin(self.log):
948b10d012aSSatish Balay      import platform
949b10d012aSSatish Balay      import re
950b10d012aSSatish Balay      r=re.compile("([0-9]+).([0-9]+).([0-9]+)")
951b10d012aSSatish Balay      m=r.match(platform.release())
952b10d012aSSatish Balay      major=int(m.group(1))
953b10d012aSSatish Balay      minor=int(m.group(2))
954b10d012aSSatish Balay      subminor=int(m.group(3))
955b10d012aSSatish Balay      if ((major < 1) or (major == 1 and minor < 7) or (major == 1 and minor == 7 and subminor <= 18)):
956b10d012aSSatish Balay        self.addMakeMacro('PETSC_CYGWIN_BROKEN_PIPE','1')
957b10d012aSSatish Balay    return
958b10d012aSSatish Balay
959b10d012aSSatish Balay#-----------------------------------------------------------------------------------------------------
960569865ddSSatish Balay  def configureDefaultArch(self):
961af0996ceSBarry Smith    conffile = os.path.join('lib','petsc','conf', 'petscvariables')
962569865ddSSatish Balay    if self.framework.argDB['with-default-arch']:
963569865ddSSatish Balay      fd = file(conffile, 'w')
964569865ddSSatish Balay      fd.write('PETSC_ARCH='+self.arch.arch+'\n')
965da93591fSBarry Smith      fd.write('PETSC_DIR='+self.petscdir.dir+'\n')
966af0996ceSBarry Smith      fd.write('include '+os.path.join(self.petscdir.dir,self.arch.arch,'lib','petsc','conf','petscvariables')+'\n')
967569865ddSSatish Balay      fd.close()
968569865ddSSatish Balay      self.framework.actions.addArgument('PETSc', 'Build', 'Set default architecture to '+self.arch.arch+' in '+conffile)
969569865ddSSatish Balay    elif os.path.isfile(conffile):
970569865ddSSatish Balay      try:
971569865ddSSatish Balay        os.unlink(conffile)
972569865ddSSatish Balay      except:
973569865ddSSatish Balay        raise RuntimeError('Unable to remove file '+conffile+'. Did a different user create it?')
974569865ddSSatish Balay    return
975569865ddSSatish Balay
976569865ddSSatish Balay#-----------------------------------------------------------------------------------------------------
977f8833479SBarry Smith  def configureScript(self):
978f8833479SBarry Smith    '''Output a script in the conf directory which will reproduce the configuration'''
979f8833479SBarry Smith    import nargs
980495bf1a9SSatish Balay    import sys
981af0996ceSBarry Smith    scriptName = os.path.join(self.arch.arch,'lib','petsc','conf', 'reconfigure-'+self.arch.arch+'.py')
982f8833479SBarry Smith    args = dict([(nargs.Arg.parseArgument(arg)[0], arg) for arg in self.framework.clArgs])
983e97fc2efSSatish Balay    if 'with-clean' in args:
984e97fc2efSSatish Balay      del args['with-clean']
985f8833479SBarry Smith    if 'configModules' in args:
9861063a081SSatish Balay      if nargs.Arg.parseArgument(args['configModules'])[1] == 'PETSc.Configure':
987f8833479SBarry Smith        del args['configModules']
988f8833479SBarry Smith    if 'optionsModule' in args:
98923a19ef1SSatish Balay      if nargs.Arg.parseArgument(args['optionsModule'])[1] == 'config.compilerOptions':
990f8833479SBarry Smith        del args['optionsModule']
991f8833479SBarry Smith    if not 'PETSC_ARCH' in args:
9921063a081SSatish Balay      args['PETSC_ARCH'] = 'PETSC_ARCH='+str(self.arch.arch)
993f8833479SBarry Smith    f = file(scriptName, 'w')
994495bf1a9SSatish Balay    f.write('#!'+sys.executable+'\n')
995f8833479SBarry Smith    f.write('if __name__ == \'__main__\':\n')
996f8833479SBarry Smith    f.write('  import sys\n')
9977561c02cSSatish Balay    f.write('  import os\n')
9987561c02cSSatish Balay    f.write('  sys.path.insert(0, os.path.abspath(\'config\'))\n')
999f8833479SBarry Smith    f.write('  import configure\n')
10001063a081SSatish Balay    # pretty print repr(args.values())
10011063a081SSatish Balay    f.write('  configure_options = [\n')
10028bec23c5SJed Brown    for itm in sorted(args.values()):
10031063a081SSatish Balay      f.write('    \''+str(itm)+'\',\n')
10041063a081SSatish Balay    f.write('  ]\n')
1005f8833479SBarry Smith    f.write('  configure.petsc_configure(configure_options)\n')
1006f8833479SBarry Smith    f.close()
1007f8833479SBarry Smith    try:
1008f8833479SBarry Smith      os.chmod(scriptName, 0775)
1009f8833479SBarry Smith    except OSError, e:
1010f8833479SBarry Smith      self.framework.logPrint('Unable to make reconfigure script executable:\n'+str(e))
1011f8833479SBarry Smith    self.framework.actions.addArgument('PETSc', 'File creation', 'Created '+scriptName+' for automatic reconfiguration')
1012f8833479SBarry Smith    return
1013f8833479SBarry Smith
1014f8833479SBarry Smith  def configureInstall(self):
1015f8833479SBarry Smith    '''Setup the directories for installation'''
1016f8833479SBarry Smith    if self.framework.argDB['prefix']:
1017824e893fSSatish Balay      self.addMakeRule('shared_install','',['-@echo "Now to install the libraries do:"',\
1018d093bd8dSBarry Smith                                              '-@echo "'+self.installdir.installSudo+'make PETSC_DIR=${PETSC_DIR} PETSC_ARCH=${PETSC_ARCH} install"',\
1019315b77e6SSatish Balay                                              '-@echo "========================================="'])
1020f8833479SBarry Smith    else:
1021824e893fSSatish Balay      self.addMakeRule('shared_install','',['-@echo "Now to check if the libraries are working do:"',\
1022824e893fSSatish Balay                                              '-@echo "make PETSC_DIR=${PETSC_DIR} PETSC_ARCH=${PETSC_ARCH} test"',\
1023315b77e6SSatish Balay                                              '-@echo "========================================="'])
1024f8833479SBarry Smith      return
1025f8833479SBarry Smith
1026f8833479SBarry Smith  def configureGCOV(self):
1027f8833479SBarry Smith    if self.framework.argDB['with-gcov']:
1028f8833479SBarry Smith      self.addDefine('USE_GCOV','1')
1029f8833479SBarry Smith    return
1030f8833479SBarry Smith
1031f8833479SBarry Smith  def configureFortranFlush(self):
1032f8833479SBarry Smith    if hasattr(self.compilers, 'FC'):
1033f8833479SBarry Smith      for baseName in ['flush','flush_']:
1034f8833479SBarry Smith        if self.libraries.check('', baseName, otherLibs = self.compilers.flibs, fortranMangle = 1):
1035f8833479SBarry Smith          self.addDefine('HAVE_'+baseName.upper(), 1)
1036f8833479SBarry Smith          return
1037f8833479SBarry Smith
103827b0f280SBarry Smith  def configureViewFromOptions(self):
103927b0f280SBarry Smith    if not self.framework.argDB['with-viewfromoptions']:
104027b0f280SBarry Smith      self.addDefine('SKIP_VIEWFROMOPTIONS',1)
104127b0f280SBarry Smith
104228bb2e72SSatish Balay  def postProcessPackages(self):
104328bb2e72SSatish Balay    postPackages=[]
104428bb2e72SSatish Balay    for i in self.framework.packages:
104528bb2e72SSatish Balay      if hasattr(i,'postProcess'): postPackages.append(i)
104628bb2e72SSatish Balay    if postPackages:
1047e64d19dfSSatish Balay      # ctetgen needs petsc conf files. so attempt to create them early
1048a77eb93bSSatish Balay      self.framework.dumpConfFiles()
1049d9293e7bSBarry Smith      # tacky fix for dependency of Aluimia on Pflotran; requested via petsc-dev Matt provide a correct fix
1050d9293e7bSBarry Smith      for i in postPackages:
1051d9293e7bSBarry Smith        if i.name.upper() in ['PFLOTRAN']:
1052d9293e7bSBarry Smith          i.postProcess()
1053d9293e7bSBarry Smith          postPackages.remove(i)
105428bb2e72SSatish Balay      for i in postPackages: i.postProcess()
1055aa5c8b8eSBarry Smith      for i in postPackages:
1056aa5c8b8eSBarry Smith        if i.installedpetsc:
1057aa5c8b8eSBarry Smith          self.installed = 1
1058aa5c8b8eSBarry Smith          break
105928bb2e72SSatish Balay    return
1060f8833479SBarry Smith
1061f8833479SBarry Smith  def configure(self):
1062f8833479SBarry Smith    if not os.path.samefile(self.petscdir.dir, os.getcwd()):
1063f8833479SBarry Smith      raise RuntimeError('Wrong PETSC_DIR option specified: '+str(self.petscdir.dir) + '\n  Configure invoked in: '+os.path.realpath(os.getcwd()))
1064550489e3SMatthew G Knepley    if self.framework.argDB['prefix'] and os.path.isdir(self.framework.argDB['prefix']) and os.path.samefile(self.framework.argDB['prefix'],self.petscdir.dir):
10653552d8fbSSatish Balay      raise RuntimeError('Incorrect option --prefix='+self.framework.argDB['prefix']+' specified. It cannot be same as PETSC_DIR!')
10668fd0dbdbSBarry Smith    if self.framework.argDB['prefix'] and self.framework.argDB['prefix'].find(' ') > -1:
10678fd0dbdbSBarry Smith      raise RuntimeError('Your --prefix '+self.framework.argDB['prefix']+' has spaces in it; this is not allowed.\n Use a --prefix that does not have spaces in it')
1068c16c35a9SSatish Balay    if self.framework.argDB['prefix'] and os.path.isdir(self.framework.argDB['prefix']) and os.path.samefile(self.framework.argDB['prefix'],os.path.join(self.petscdir.dir,self.arch.arch)):
1069c16c35a9SSatish Balay      raise RuntimeError('Incorrect option --prefix='+self.framework.argDB['prefix']+' specified. It cannot be same as PETSC_DIR/PETSC_ARCH!')
1070f16c1317SJed Brown    self.framework.header          = os.path.join(self.arch.arch,'include','petscconf.h')
1071f16c1317SJed Brown    self.framework.cHeader         = os.path.join(self.arch.arch,'include','petscfix.h')
1072af0996ceSBarry Smith    self.framework.makeMacroHeader = os.path.join(self.arch.arch,'lib','petsc','conf','petscvariables')
1073af0996ceSBarry Smith    self.framework.makeRuleHeader  = os.path.join(self.arch.arch,'lib','petsc','conf','petscrules')
1074f8833479SBarry Smith    if self.libraries.math is None:
1075f8833479SBarry Smith      raise RuntimeError('PETSc requires a functional math library. Please send configure.log to petsc-maint@mcs.anl.gov.')
1076f8833479SBarry Smith    if self.languages.clanguage == 'Cxx' and not hasattr(self.compilers, 'CXX'):
1077f8833479SBarry Smith      raise RuntimeError('Cannot set C language to C++ without a functional C++ compiler.')
1078ed938b00SJed Brown    self.executeTest(self.configureRTLDDefault)
1079b2843cf1SBarry Smith    self.executeTest(self.configurePrefetch)
10802400fdedSBarry Smith    self.executeTest(self.configureUnused)
10811ef8df7fSJed Brown    self.executeTest(self.configureDeprecated)
108298ed35c3SBarry Smith    self.executeTest(self.configureIsatty)
10839800092aSJed Brown    self.executeTest(self.configureExpect);
108418f41590SBarry Smith    self.executeTest(self.configureAlign);
108553c77d0aSJed Brown    self.executeTest(self.configureFunctionName);
1086753ebd1dSJed Brown    self.executeTest(self.configureIntptrt);
1087f8833479SBarry Smith    self.executeTest(self.configureSolaris)
1088f8833479SBarry Smith    self.executeTest(self.configureLinux)
1089f8833479SBarry Smith    self.executeTest(self.configureWin32)
1090b10d012aSSatish Balay    self.executeTest(self.configureCygwinBrokenPipe)
1091569865ddSSatish Balay    self.executeTest(self.configureDefaultArch)
1092f8833479SBarry Smith    self.executeTest(self.configureScript)
1093f8833479SBarry Smith    self.executeTest(self.configureInstall)
1094f8833479SBarry Smith    self.executeTest(self.configureGCOV)
1095f8833479SBarry Smith    self.executeTest(self.configureFortranFlush)
109609bc878fSSatish Balay    self.executeTest(self.configureAtoll)
109727b0f280SBarry Smith    self.executeTest(self.configureViewFromOptions)
1098f8833479SBarry Smith    # dummy rules, always needed except for remote builds
1099f8833479SBarry Smith    self.addMakeRule('remote','')
1100f8833479SBarry Smith    self.addMakeRule('remoteclean','')
1101f8833479SBarry Smith
1102f8833479SBarry Smith    self.Dump()
1103f8833479SBarry Smith    self.dumpConfigInfo()
11042a4161d9SMatthew G Knepley    self.dumpMachineInfo()
1105511a6afcSJed Brown    self.dumpCMakeConfig()
11068b0282a9SJed Brown    self.dumpCMakeLists()
110740277576SBarry Smith    # need to save the current state of BuildSystem so that postProcess() packages can read it in and perhaps run make install
110840277576SBarry Smith    self.framework.storeSubstitutions(self.framework.argDB)
110940277576SBarry Smith    self.framework.argDB['configureCache'] = cPickle.dumps(self.framework)
111040277576SBarry Smith    self.framework.argDB.save(force = True)
11118b0282a9SJed Brown    self.cmakeBoot()
1112262119f8SBarry Smith    self.DumpPkgconfig()
1113351d3a41SMatthew G Knepley    self.DumpModule()
1114f7ad81e1SBarry Smith    self.postProcessPackages()
1115f8833479SBarry Smith    self.framework.log.write('================================================================================\n')
1116f8833479SBarry Smith    self.logClear()
1117f8833479SBarry Smith    return
1118