xref: /petsc/config/configure.py (revision af0996ce37bc06907c37d8d91773840993d61e62)
15d5a5a7bSMatthew Knepley#!/usr/bin/env python
22787667cSMatthew G Knepleyimport os, sys
34f8a5b45SBarry Smithimport commands
4a1eda5bfSSatish Balay# to load ~/.pythonrc.py before inserting correct BuildSystem to path
5a1eda5bfSSatish Balayimport user
67c9abfe7SSatish BalayextraLogs = []
7b0b472b0SSatish Balaypetsc_arch = ''
84b8aa89bSBarry Smith
944b0d7f9SSatish Balay# Use en_US as language so that BuildSystem parses compiler messages in english
109b436e4bSSatish Balayif 'LC_LOCAL' in os.environ and os.environ['LC_LOCAL'] != '' and os.environ['LC_LOCAL'] != 'en_US' and os.environ['LC_LOCAL']!= 'en_US.UTF-8': os.environ['LC_LOCAL'] = 'en_US.UTF-8'
119b436e4bSSatish Balayif 'LANG' in os.environ and os.environ['LANG'] != '' and os.environ['LANG'] != 'en_US' and os.environ['LANG'] != 'en_US.UTF-8': os.environ['LANG'] = 'en_US.UTF-8'
1244b0d7f9SSatish Balay
13200fbeb4SSatish Balayif not hasattr(sys, 'version_info') or not sys.version_info[0] == 2 or not sys.version_info[1] >= 4:
14200fbeb4SSatish Balay  print '*** You must have Python2 version 2.4 or higher to run ./configure        *****'
15495ffa62SBarry Smith  print '*          Python is easy to install for end users or sys-admin.              *'
1632077d6dSBarry Smith  print '*                  http://www.python.org/download/                            *'
1732077d6dSBarry Smith  print '*                                                                             *'
18495ffa62SBarry Smith  print '*           You CANNOT configure PETSc without Python                         *'
19f08646a8SSatish Balay  print '*   http://www.mcs.anl.gov/petsc/documentation/installation.html     *'
20a0022257SSatish Balay  print '*******************************************************************************'
21b26a8723SBarry Smith  sys.exit(4)
222fb34ac0SMatthew Knepley
23ccb279e1SMatthew Knepleydef check_for_option_mistakes(opts):
2445faeebdSBarry Smith  for opt in opts[1:]:
25cda0060aSMatthew Knepley    name = opt.split('=')[0]
26ccb279e1SMatthew Knepley    if name.find('_') >= 0:
27ccb279e1SMatthew Knepley      exception = False
28d305a81bSVasiliy Kozyrev      for exc in ['mkl_cpardiso', 'mkl_pardiso', 'superlu_dist', 'superlu_mt', 'PETSC_ARCH', 'PETSC_DIR', 'CXX_CXXFLAGS', 'LD_SHARED', 'CC_LINKER_FLAGS', 'CXX_LINKER_FLAGS', 'FC_LINKER_FLAGS', 'AR_FLAGS', 'C_VERSION', 'CXX_VERSION', 'FC_VERSION', 'size_t', 'MPI_Comm','MPI_Fint','int64_t']:
29ccb279e1SMatthew Knepley        if name.find(exc) >= 0:
30ccb279e1SMatthew Knepley          exception = True
31ccb279e1SMatthew Knepley      if not exception:
32ccb279e1SMatthew Knepley        raise ValueError('The option '+name+' should probably be '+name.replace('_', '-'));
33ab610953SSatish Balay    if opt.find('=') >=0:
34ab610953SSatish Balay      optval = opt.split('=')[1]
35ab610953SSatish Balay      if optval == 'ifneeded':
36ab610953SSatish Balay        raise ValueError('The option '+opt+' should probably be '+opt.replace('ifneeded', '1'));
37ccb279e1SMatthew Knepley  return
38ccb279e1SMatthew Knepley
392af240f0SSatish Balaydef check_for_option_changed(opts):
402af240f0SSatish Balay# Document changes in command line options here.
4169c3d79aSBarry Smith  optMap = [('with-64bit-indices','with-64-bit-indices'),('c-blas-lapack','f2cblaslapack'),('cholmod','suitesparse'),('umfpack','suitesparse'),('f-blas-lapack','fblaslapack')]
422af240f0SSatish Balay  for opt in opts[1:]:
432af240f0SSatish Balay    optname = opt.split('=')[0].strip('-')
442af240f0SSatish Balay    for oldname,newname in optMap:
452af240f0SSatish Balay      if optname.find(oldname) >=0:
462af240f0SSatish Balay        raise ValueError('The option '+opt+' should probably be '+opt.replace(oldname,newname))
472af240f0SSatish Balay  return
482af240f0SSatish Balay
4959e9bfd6SSatish Balaydef check_petsc_arch(opts):
50c43ea0feSSatish Balay  # If PETSC_ARCH not specified - use script name (if not configure.py)
51b0b472b0SSatish Balay  global petsc_arch
52c43ea0feSSatish Balay  found = 0
5359e9bfd6SSatish Balay  for name in opts:
54c43ea0feSSatish Balay    if name.find('PETSC_ARCH=') >= 0:
55b0b472b0SSatish Balay      petsc_arch=name.split('=')[1]
56c43ea0feSSatish Balay      found = 1
5759e9bfd6SSatish Balay      break
5859e9bfd6SSatish Balay  # If not yet specified - use the filename of script
59c43ea0feSSatish Balay  if not found:
6059e9bfd6SSatish Balay      filename = os.path.basename(sys.argv[0])
61e68ebbecSBarry Smith      if not filename.startswith('configure') and not filename.startswith('reconfigure') and not filename.startswith('setup'):
62b0b472b0SSatish Balay        petsc_arch=os.path.splitext(os.path.basename(sys.argv[0]))[0]
63b0b472b0SSatish Balay        useName = 'PETSC_ARCH='+petsc_arch
6459e9bfd6SSatish Balay        opts.append(useName)
651937db7aSSatish Balay  return 0
664b8aa89bSBarry Smith
67f08ee00aSJason Sarichdef chkenable():
68f08ee00aSJason Sarich  #Replace all 'enable-'/'disable-' with 'with-'=0/1/tail
69f08ee00aSJason Sarich  #enable-fortran is a special case, the resulting --with-fortran is ambiguous.
70f08ee00aSJason Sarich  #Would it mean --with-fc= or --with-fortran-interfaces=?
71f08ee00aSJason Sarich  for l in range(0,len(sys.argv)):
72f08ee00aSJason Sarich    name = sys.argv[l]
73f08ee00aSJason Sarich    if name.find('enable-fortran') >= 0:
74f08ee00aSJason Sarich      if name.find('=') == -1:
75f08ee00aSJason Sarich        sys.argv[l] = name.replace('enable-fortran','with-fortran-interfaces')+'=1'
76f08ee00aSJason Sarich      else:
77f08ee00aSJason Sarich        head, tail = name.split('=', 1)
78f08ee00aSJason Sarich        sys.argv[l] = head.replace('enable-fortran','with-fortran-interfaces')+'='+tail
79f08ee00aSJason Sarich      continue
80f08ee00aSJason Sarich    if name.find('disable-fortran') >= 0:
81f08ee00aSJason Sarich      if name.find('=') == -1:
82f08ee00aSJason Sarich        sys.argv[l] = name.replace('disable-fortran','with-fortran-interfaces')+'=0'
83f08ee00aSJason Sarich      else:
84f08ee00aSJason Sarich        head, tail = name.split('=', 1)
85f08ee00aSJason Sarich        if tail == '1': tail = '0'
86f08ee00aSJason Sarich        sys.argv[l] = head.replace('disable-fortran','with-fortran-interfaces')+'='+tail
87f08ee00aSJason Sarich      continue
88f08ee00aSJason Sarich
89f08ee00aSJason Sarich
90f08ee00aSJason Sarich    if name.find('enable-') >= 0:
91f08ee00aSJason Sarich      if name.find('=') == -1:
92f08ee00aSJason Sarich        sys.argv[l] = name.replace('enable-','with-')+'=1'
93f08ee00aSJason Sarich      else:
94f08ee00aSJason Sarich        head, tail = name.split('=', 1)
95f08ee00aSJason Sarich        sys.argv[l] = head.replace('enable-','with-')+'='+tail
96f08ee00aSJason Sarich    if name.find('disable-') >= 0:
97f08ee00aSJason Sarich      if name.find('=') == -1:
98f08ee00aSJason Sarich        sys.argv[l] = name.replace('disable-','with-')+'=0'
99f08ee00aSJason Sarich      else:
100f08ee00aSJason Sarich        head, tail = name.split('=', 1)
101f08ee00aSJason Sarich        if tail == '1': tail = '0'
102f08ee00aSJason Sarich        sys.argv[l] = head.replace('disable-','with-')+'='+tail
103f08ee00aSJason Sarich    if name.find('without-') >= 0:
104f08ee00aSJason Sarich      if name.find('=') == -1:
105f08ee00aSJason Sarich        sys.argv[l] = name.replace('without-','with-')+'=0'
106f08ee00aSJason Sarich      else:
107f08ee00aSJason Sarich        head, tail = name.split('=', 1)
108f08ee00aSJason Sarich        if tail == '1': tail = '0'
109f08ee00aSJason Sarich        sys.argv[l] = head.replace('without-','with-')+'='+tail
110f08ee00aSJason Sarich
111f08ee00aSJason Sarichdef chksynonyms():
112f08ee00aSJason Sarich  #replace common configure options with ones that PETSc BuildSystem recognizes
113f08ee00aSJason Sarich  for l in range(0,len(sys.argv)):
114f08ee00aSJason Sarich    name = sys.argv[l]
115f08ee00aSJason Sarich
116f08ee00aSJason Sarich
117ce54fb35SBarry Smith    if name.find('with-debug=') >= 0 or name.endswith('with-debug'):
118f08ee00aSJason Sarich      if name.find('=') == -1:
119f08ee00aSJason Sarich        sys.argv[l] = name.replace('with-debug','with-debugging')+'=1'
120f08ee00aSJason Sarich      else:
121f08ee00aSJason Sarich        head, tail = name.split('=', 1)
122f08ee00aSJason Sarich        sys.argv[l] = head.replace('with-debug','with-debugging')+'='+tail
123f08ee00aSJason Sarich
124ce54fb35SBarry Smith    if name.find('with-shared=') >= 0 or name.endswith('with-shared'):
125f08ee00aSJason Sarich      if name.find('=') == -1:
126ce54fb35SBarry Smith        sys.argv[l] = name.replace('with-shared','with-shared-libraries')+'=1'
127f08ee00aSJason Sarich      else:
128f08ee00aSJason Sarich        head, tail = name.split('=', 1)
129ce54fb35SBarry Smith        sys.argv[l] = head.replace('with-shared','with-shared-libraries')+'='+tail
130f08ee00aSJason Sarich
131f08ee00aSJason Sarich
132f08ee00aSJason Sarich
133f08ee00aSJason Sarich
1341921852fSSatish Balaydef chkwinf90():
1356a8f6897SSatish Balay  for arg in sys.argv:
1361921852fSSatish Balay    if (arg.find('win32fe') >= 0 and (arg.find('f90') >=0 or arg.find('ifort') >=0)):
1376a8f6897SSatish Balay      return 1
1386a8f6897SSatish Balay  return 0
1396a8f6897SSatish Balay
1408a4600f2SSatish Balaydef chkdosfiles():
141360dfd13SSatish Balay  # cygwin - but not a hg clone - so check one of files in bin dir
142db1f124cSVasiliy Kozyrev  if "\r\n" in open(os.path.join('bin','petscmpiexec'),"rb").read():
143db1f124cSVasiliy Kozyrev    print '==============================================================================='
144db1f124cSVasiliy Kozyrev    print ' *** Scripts are in DOS mode. Was winzip used to extract petsc sources?    ****'
145db1f124cSVasiliy Kozyrev    print ' *** Please restart with a fresh tarball and use "tar -xzf petsc.tar.gz"   ****'
146db1f124cSVasiliy Kozyrev    print '==============================================================================='
147db1f124cSVasiliy Kozyrev    sys.exit(3)
1488a4600f2SSatish Balay  return
1498a4600f2SSatish Balay
1506a8f6897SSatish Balaydef chkcygwinlink():
1511921852fSSatish Balay  if os.path.exists('/usr/bin/cygcheck.exe') and os.path.exists('/usr/bin/link.exe') and chkwinf90():
1526a8f6897SSatish Balay      if '--ignore-cygwin-link' in sys.argv: return 0
1536a8f6897SSatish Balay      print '==============================================================================='
1541921852fSSatish Balay      print ' *** Cygwin /usr/bin/link detected! Compiles with CVF/Intel f90 can break!  **'
1556a8f6897SSatish Balay      print ' *** To workarround do: "mv /usr/bin/link.exe /usr/bin/link-cygwin.exe"     **'
1566a8f6897SSatish Balay      print ' *** Or to ignore this check, use configure option: --ignore-cygwin-link    **'
1576a8f6897SSatish Balay      print '==============================================================================='
1586a8f6897SSatish Balay      sys.exit(3)
1596a8f6897SSatish Balay  return 0
1606a8f6897SSatish Balay
16185ef4d1eSSatish Balaydef chkbrokencygwin():
1629dabcff0SSatish Balay  if os.path.exists('/usr/bin/cygcheck.exe'):
1639dabcff0SSatish Balay    buf = os.popen('/usr/bin/cygcheck.exe -c cygwin').read()
1649dabcff0SSatish Balay    if buf.find('1.5.11-1') > -1:
165a0022257SSatish Balay      print '==============================================================================='
166e2e64c6bSBarry Smith      print ' *** cygwin-1.5.11-1 detected. ./configure fails with this version ***'
1671937db7aSSatish Balay      print ' *** Please upgrade to cygwin-1.5.12-1 or newer version. This can  ***'
1681937db7aSSatish Balay      print ' *** be done by running cygwin-setup, selecting "next" all the way.***'
169a0022257SSatish Balay      print '==============================================================================='
1701937db7aSSatish Balay      sys.exit(3)
1719dabcff0SSatish Balay  return 0
1729dabcff0SSatish Balay
173ee76e990SSatish Balaydef chkusingwindowspython():
174ee76e990SSatish Balay  if sys.platform == 'win32':
175ee76e990SSatish Balay    print '==============================================================================='
176ee76e990SSatish Balay    print ' *** Windows python detected. Please rerun ./configure with cygwin-python. ***'
177ee76e990SSatish Balay    print '==============================================================================='
178ee76e990SSatish Balay    sys.exit(3)
179ee76e990SSatish Balay  return 0
180ee76e990SSatish Balay
18114f5c25cSSatish Balaydef chkcygwinpython():
1821150532aSSatish Balay  if sys.platform == 'cygwin' :
1831150532aSSatish Balay    import platform
1841150532aSSatish Balay    import re
1851150532aSSatish Balay    r=re.compile("([0-9]+).([0-9]+).([0-9]+)")
1861150532aSSatish Balay    m=r.match(platform.release())
1871150532aSSatish Balay    major=int(m.group(1))
1881150532aSSatish Balay    minor=int(m.group(2))
1891150532aSSatish Balay    subminor=int(m.group(3))
1901150532aSSatish Balay    if ((major < 1) or (major == 1 and minor < 7) or (major == 1 and minor == 7 and subminor < 34)):
1911937db7aSSatish Balay      sys.argv.append('--useThreads=0')
1921937db7aSSatish Balay      extraLogs.append('''\
193a0022257SSatish Balay===============================================================================
1941150532aSSatish Balay** Cygwin version is older than 1.7.34. Python threads do not work correctly. ***
19514f5c25cSSatish Balay** Disabling thread usage for this run of ./configure *******
196a0022257SSatish Balay===============================================================================''')
19771384062SSatish Balay  return 0
19871384062SSatish Balay
1991937db7aSSatish Balaydef chkrhl9():
2001937db7aSSatish Balay  if os.path.exists('/etc/redhat-release'):
201836c2c52SSatish Balay    try:
202594eb360SSatish Balay      file = open('/etc/redhat-release','r')
203836c2c52SSatish Balay      buf = file.read()
204836c2c52SSatish Balay      file.close()
205836c2c52SSatish Balay    except:
206836c2c52SSatish Balay      # can't read file - assume dangerous RHL9
2071937db7aSSatish Balay      buf = 'Shrike'
208836c2c52SSatish Balay    if buf.find('Shrike') > -1:
2091937db7aSSatish Balay      sys.argv.append('--useThreads=0')
2101937db7aSSatish Balay      extraLogs.append('''\
211a0022257SSatish Balay==============================================================================
2121937db7aSSatish Balay   *** RHL9 detected. Threads do not work correctly with this distribution ***
213e2e64c6bSBarry Smith   ****** Disabling thread usage for this run of ./configure *********
214a0022257SSatish Balay===============================================================================''')
215836c2c52SSatish Balay  return 0
216836c2c52SSatish Balay
217da58527dSSatish Balaydef check_broken_configure_log_links():
218da58527dSSatish Balay  '''Sometime symlinks can get broken if the original files are deleted. Delete such broken links'''
219da58527dSSatish Balay  import os
220da58527dSSatish Balay  for logfile in ['configure.log','configure.log.bkp']:
221da58527dSSatish Balay    if os.path.islink(logfile) and not os.path.isfile(logfile): os.remove(logfile)
222da58527dSSatish Balay  return
223da58527dSSatish Balay
224da1d79b4SSatish Balaydef move_configure_log(framework):
225*af0996ceSBarry Smith  '''Move configure.log to PETSC_ARCH/lib/petsc/conf - and update configure.log.bkp in both locations appropriately'''
226b0b472b0SSatish Balay  global petsc_arch
227b0b472b0SSatish Balay
228b0b472b0SSatish Balay  if hasattr(framework,'arch'): petsc_arch = framework.arch
229b0b472b0SSatish Balay  if hasattr(framework,'logName'): curr_file = framework.logName
230b0b472b0SSatish Balay  else: curr_file = 'configure.log'
231b0b472b0SSatish Balay
232b0b472b0SSatish Balay  if petsc_arch:
233da1d79b4SSatish Balay    import shutil
234da1d79b4SSatish Balay    import os
235b0b472b0SSatish Balay
236b0b472b0SSatish Balay    # Just in case - confdir is not created
237fe998a80SBarry Smith    lib_dir = os.path.join(petsc_arch,'lib')
238*af0996ceSBarry Smith    conf_dir = os.path.join(petsc_arch,'lib','petsc','conf')
239b0b472b0SSatish Balay    if not os.path.isdir(petsc_arch): os.mkdir(petsc_arch)
240fe998a80SBarry Smith    if not os.path.isdir(lib_dir): os.mkdir(lib_dir)
241b0b472b0SSatish Balay    if not os.path.isdir(conf_dir): os.mkdir(conf_dir)
242b0b472b0SSatish Balay
243da1d79b4SSatish Balay    curr_bkp  = curr_file + '.bkp'
244b0b472b0SSatish Balay    new_file  = os.path.join(conf_dir,curr_file)
245da1d79b4SSatish Balay    new_bkp   = new_file + '.bkp'
246da1d79b4SSatish Balay
247*af0996ceSBarry Smith    # Keep backup in $PETSC_ARCH/lib/petsc/conf location
248da1d79b4SSatish Balay    if os.path.isfile(new_bkp): os.remove(new_bkp)
249da1d79b4SSatish Balay    if os.path.isfile(new_file): os.rename(new_file,new_bkp)
2509e50940cSSatish Balay    if os.path.isfile(curr_file):
2519e50940cSSatish Balay      shutil.copyfile(curr_file,new_file)
2529e50940cSSatish Balay      os.remove(curr_file)
253da58527dSSatish Balay    if os.path.isfile(new_file): os.symlink(new_file,curr_file)
254*af0996ceSBarry Smith    # If the old bkp is using the same PETSC_ARCH/lib/petsc/conf - then update bkp link
255da1d79b4SSatish Balay    if os.path.realpath(curr_bkp) == os.path.realpath(new_file):
256da58527dSSatish Balay      if os.path.isfile(curr_bkp): os.remove(curr_bkp)
257da58527dSSatish Balay      if os.path.isfile(new_bkp): os.symlink(new_bkp,curr_bkp)
258da1d79b4SSatish Balay  return
259da1d79b4SSatish Balay
260d93c4beeSSatish Balaydef print_final_timestamp(framework):
261d93c4beeSSatish Balay  import time
262d93c4beeSSatish Balay  framework.log.write(('='*80)+'\n')
263d93c4beeSSatish Balay  framework.log.write('Finishing Configure Run at '+time.ctime(time.time())+'\n')
264d93c4beeSSatish Balay  framework.log.write(('='*80)+'\n')
265d93c4beeSSatish Balay  return
266d93c4beeSSatish Balay
2675d5a5a7bSMatthew Knepleydef petsc_configure(configure_options):
2684a532159SBarry Smith  try:
2694a532159SBarry Smith    petscdir = os.environ['PETSC_DIR']
270*af0996ceSBarry Smith    sys.path.append(os.path.join(petscdir,'bin'))
2714a532159SBarry Smith    import petscnagupgrade
2724a532159SBarry Smith    file     = os.path.join(petscdir,'.nagged')
2734a532159SBarry Smith    if not petscnagupgrade.naggedtoday(file):
2744a532159SBarry Smith      petscnagupgrade.currentversion(petscdir)
2754a532159SBarry Smith  except:
2764a532159SBarry Smith    pass
277a0022257SSatish Balay  print '==============================================================================='
27859e9bfd6SSatish Balay  print '             Configuring PETSc to compile on your system                       '
279a0022257SSatish Balay  print '==============================================================================='
28059e9bfd6SSatish Balay
281a258c2c4SMatthew G Knepley  try:
282c43ea0feSSatish Balay    # Command line arguments take precedence (but don't destroy argv[0])
283c43ea0feSSatish Balay    sys.argv = sys.argv[:1] + configure_options + sys.argv[1:]
284ccb279e1SMatthew Knepley    check_for_option_mistakes(sys.argv)
2852af240f0SSatish Balay    check_for_option_changed(sys.argv)
286a258c2c4SMatthew G Knepley  except (TypeError, ValueError), e:
287a258c2c4SMatthew G Knepley    emsg = str(e)
288a258c2c4SMatthew G Knepley    if not emsg.endswith('\n'): emsg = emsg+'\n'
289a258c2c4SMatthew G Knepley    msg ='*******************************************************************************\n'\
290a258c2c4SMatthew G Knepley    +'                ERROR in COMMAND LINE ARGUMENT to ./configure \n' \
291a258c2c4SMatthew G Knepley    +'-------------------------------------------------------------------------------\n'  \
292a258c2c4SMatthew G Knepley    +emsg+'*******************************************************************************\n'
293a258c2c4SMatthew G Knepley    sys.exit(msg)
29459e9bfd6SSatish Balay  # check PETSC_ARCH
29559e9bfd6SSatish Balay  check_petsc_arch(sys.argv)
296da58527dSSatish Balay  check_broken_configure_log_links()
2975fb2c094SBarry Smith
298f08ee00aSJason Sarich  #rename '--enable-' to '--with-'
299f08ee00aSJason Sarich  chkenable()
300c22cdea9SBarry Smith  # support a few standard configure option types
301f08ee00aSJason Sarich  chksynonyms()
3029dabcff0SSatish Balay  # Check for broken cygwin
3031937db7aSSatish Balay  chkbrokencygwin()
304d65f3bddSMatthew Knepley  # Disable threads on RHL9
3051937db7aSSatish Balay  chkrhl9()
306ee76e990SSatish Balay  # Make sure cygwin-python is used on windows
307ee76e990SSatish Balay  chkusingwindowspython()
30814f5c25cSSatish Balay  # Threads don't work for cygwin & python...
30914f5c25cSSatish Balay  chkcygwinpython()
3106a8f6897SSatish Balay  chkcygwinlink()
3118a4600f2SSatish Balay  chkdosfiles()
3129dabcff0SSatish Balay
31387282423SMatthew Knepley  # Should be run from the toplevel
314dbca6d9dSSatish Balay  configDir = os.path.abspath('config')
315f8833479SBarry Smith  bsDir     = os.path.join(configDir, 'BuildSystem')
316f8833479SBarry Smith  if not os.path.isdir(configDir):
3175d5a5a7bSMatthew Knepley    raise RuntimeError('Run configure from $PETSC_DIR, not '+os.path.abspath('.'))
31887282423SMatthew Knepley  sys.path.insert(0, bsDir)
319f8833479SBarry Smith  sys.path.insert(0, configDir)
320e69ef9dfSMatthew Knepley  import config.base
3215d5a5a7bSMatthew Knepley  import config.framework
322f56be888SMatthew Knepley  import cPickle
3234f8a5b45SBarry Smith
3249dd2fdb1SMatthew Knepley  framework = None
3259dd2fdb1SMatthew Knepley  try:
32623a19ef1SSatish Balay    framework = config.framework.Framework(['--configModules=PETSc.Configure','--optionsModule=config.compilerOptions']+sys.argv[1:], loadArgDB = 0)
327d65f3bddSMatthew Knepley    framework.setup()
328d65f3bddSMatthew Knepley    framework.logPrint('\n'.join(extraLogs))
329f24f64feSBarry Smith    framework.configure(out = sys.stdout)
330358ebc22SMatthew Knepley    framework.storeSubstitutions(framework.argDB)
331f56be888SMatthew Knepley    framework.argDB['configureCache'] = cPickle.dumps(framework)
3327c939e48SSatish Balay    framework.printSummary()
33312c1d45bSMatthew G Knepley    framework.argDB.save(force = True)
3347cfd0b05SBarry Smith    framework.logClear()
335d93c4beeSSatish Balay    print_final_timestamp(framework)
336eefa2c0fSBarry Smith    framework.closeLog()
3379e50940cSSatish Balay    try:
338da1d79b4SSatish Balay      move_configure_log(framework)
3399e50940cSSatish Balay    except:
3409e50940cSSatish Balay      # perhaps print an error about unable to shuffle logs?
3419e50940cSSatish Balay      pass
342dd50d019SBarry Smith    return 0
343e69ef9dfSMatthew Knepley  except (RuntimeError, config.base.ConfigureSetupError), e:
3447d670a3cSBarry Smith    emsg = str(e)
34542351d26SSatish Balay    if not emsg.endswith('\n'): emsg = emsg+'\n'
346a0022257SSatish Balay    msg ='*******************************************************************************\n'\
347fe09c992SBarry Smith    +'         UNABLE to CONFIGURE with GIVEN OPTIONS    (see configure.log for details):\n' \
348a0022257SSatish Balay    +'-------------------------------------------------------------------------------\n'  \
349a0022257SSatish Balay    +emsg+'*******************************************************************************\n'
350e9f3bb17SBarry Smith    se = ''
3519dd2fdb1SMatthew Knepley  except (TypeError, ValueError), e:
3527d670a3cSBarry Smith    emsg = str(e)
35342351d26SSatish Balay    if not emsg.endswith('\n'): emsg = emsg+'\n'
354a0022257SSatish Balay    msg ='*******************************************************************************\n'\
355e2e64c6bSBarry Smith    +'                ERROR in COMMAND LINE ARGUMENT to ./configure \n' \
356a0022257SSatish Balay    +'-------------------------------------------------------------------------------\n'  \
357a0022257SSatish Balay    +emsg+'*******************************************************************************\n'
3581a02243aSBarry Smith    se = ''
35996dc2fe8SMatthew Knepley  except ImportError, e :
3607d670a3cSBarry Smith    emsg = str(e)
36142351d26SSatish Balay    if not emsg.endswith('\n'): emsg = emsg+'\n'
362a0022257SSatish Balay    msg ='*******************************************************************************\n'\
363e2e64c6bSBarry Smith    +'                     UNABLE to FIND MODULE for ./configure \n' \
364a0022257SSatish Balay    +'-------------------------------------------------------------------------------\n'  \
365a0022257SSatish Balay    +emsg+'*******************************************************************************\n'
36696dc2fe8SMatthew Knepley    se = ''
36701def6f0SMatthew Knepley  except OSError, e :
36801def6f0SMatthew Knepley    emsg = str(e)
36901def6f0SMatthew Knepley    if not emsg.endswith('\n'): emsg = emsg+'\n'
370a0022257SSatish Balay    msg ='*******************************************************************************\n'\
371e2e64c6bSBarry Smith    +'                    UNABLE to EXECUTE BINARIES for ./configure \n' \
372a0022257SSatish Balay    +'-------------------------------------------------------------------------------\n'  \
373a0022257SSatish Balay    +emsg+'*******************************************************************************\n'
37401def6f0SMatthew Knepley    se = ''
375d7d3c4beSMatthew Knepley  except SystemExit, e:
376d7d3c4beSMatthew Knepley    if e.code is None or e.code == 0:
377d7d3c4beSMatthew Knepley      return
378a0022257SSatish Balay    msg ='*******************************************************************************\n'\
379b1dada7fSMatthew Knepley    +'         CONFIGURATION FAILURE  (Please send configure.log to petsc-maint@mcs.anl.gov)\n' \
380a0022257SSatish Balay    +'*******************************************************************************\n'
381d7d3c4beSMatthew Knepley    se  = str(e)
382e9f3bb17SBarry Smith  except Exception, e:
383a0022257SSatish Balay    msg ='*******************************************************************************\n'\
384fe09c992SBarry Smith    +'        CONFIGURATION CRASH  (Please send configure.log to petsc-maint@mcs.anl.gov)\n' \
385a0022257SSatish Balay    +'*******************************************************************************\n'
386e9f3bb17SBarry Smith    se  = str(e)
387e9f3bb17SBarry Smith
388e9f3bb17SBarry Smith  print msg
3899dd2fdb1SMatthew Knepley  if not framework is None:
3909dd2fdb1SMatthew Knepley    framework.logClear()
391e9f3bb17SBarry Smith    if hasattr(framework, 'log'):
39222c95ba3SMatthew G Knepley      try:
393d71f8ab3SSatish Balay        if hasattr(framework,'compilerDefines'):
394bd5137a2SBarry Smith          framework.log.write('**** Configure header '+framework.compilerDefines+' ****\n')
395febd46b0SSatish Balay          framework.outputHeader(framework.log)
396d71f8ab3SSatish Balay        if hasattr(framework,'compilerFixes'):
397bd5137a2SBarry Smith          framework.log.write('**** C specific Configure header '+framework.compilerFixes+' ****\n')
398febd46b0SSatish Balay          framework.outputCHeader(framework.log)
39922c95ba3SMatthew G Knepley      except Exception, e:
40022c95ba3SMatthew G Knepley        framework.log.write('Problem writing headers to log: '+str(e))
401f6614063SBarry Smith      import traceback
402b1dada7fSMatthew Knepley      try:
403f24f64feSBarry Smith        framework.log.write(msg+se)
404f24f64feSBarry Smith        traceback.print_tb(sys.exc_info()[2], file = framework.log)
405d93c4beeSSatish Balay        print_final_timestamp(framework)
406f73e6a6cSSatish Balay        if hasattr(framework,'log'): framework.log.close()
407da1d79b4SSatish Balay        move_configure_log(framework)
408b1dada7fSMatthew Knepley      except:
409b1dada7fSMatthew Knepley        pass
410e9f3bb17SBarry Smith      sys.exit(1)
4115a74f024SMatthew Knepley  else:
4125a74f024SMatthew Knepley    print se
4135a74f024SMatthew Knepley    import traceback
4145a74f024SMatthew Knepley    traceback.print_tb(sys.exc_info()[2])
415f73e6a6cSSatish Balay  if hasattr(framework,'log'): framework.log.close()
4165d5a5a7bSMatthew Knepley
4175d5a5a7bSMatthew Knepleyif __name__ == '__main__':
418a030c540SBarry Smith  petsc_configure([])
419759acf64SBarry Smith
420