xref: /petsc/config/configure.py (revision 7eed18796764197c03630d43742eae56f050633a)
15d5a5a7bSMatthew Knepley#!/usr/bin/env python
25d5a5a7bSMatthew Knepleyimport os
35d5a5a7bSMatthew Knepleyimport sys
44f8a5b45SBarry Smithimport commands
55d5a5a7bSMatthew Knepley
64b8aa89bSBarry Smith
7378f148eSBarry Smithif not hasattr(sys, 'version_info') or not sys.version_info[1] >= 2 or not sys.version_info[0] >= 2:
8495ffa62SBarry Smith  print '**** You must have Python version 2.2 or higher to run config/configure.py ******'
9495ffa62SBarry Smith  print '*           Python is easy to install for end users or sys-admin.               *'
1032077d6dSBarry Smith  print '*                   http://www.python.org/download/                             *'
1132077d6dSBarry Smith  print '*                                                                               *'
12495ffa62SBarry Smith  print '*            You CANNOT configure PETSc without Python                          *'
13495ffa62SBarry Smith  print '*    http://www.mcs.anl.gov/petsc/petsc-as/documentation/installation.html      *'
1432077d6dSBarry Smith  print '*********************************************************************************'
15b26a8723SBarry Smith  sys.exit(4)
162fb34ac0SMatthew Knepley
1759e9bfd6SSatish Balaydef check_petsc_arch(opts):
18c43ea0feSSatish Balay  # If PETSC_ARCH not specified - use script name (if not configure.py)
19c43ea0feSSatish Balay  found = 0
2059e9bfd6SSatish Balay  for name in opts:
21c43ea0feSSatish Balay    if name.find('PETSC_ARCH=') >= 0:
22c43ea0feSSatish Balay      found = 1
2359e9bfd6SSatish Balay      break
2459e9bfd6SSatish Balay  # If not yet specified - use the filename of script
25c43ea0feSSatish Balay  if not found:
2659e9bfd6SSatish Balay      filename = os.path.basename(sys.argv[0])
27*7eed1879SBarry Smith      if not filename.startswith('configure') and not filename.startswith('reconfigure'):
2859e9bfd6SSatish Balay        useName = '-PETSC_ARCH='+os.path.splitext(os.path.basename(sys.argv[0]))[0]
2959e9bfd6SSatish Balay        opts.append(useName)
3059e9bfd6SSatish Balay  return
314b8aa89bSBarry Smith
329dabcff0SSatish Balaydef chkcygwin():
339dabcff0SSatish Balay  if os.path.exists('/usr/bin/cygcheck.exe'):
349dabcff0SSatish Balay    buf = os.popen('/usr/bin/cygcheck.exe -c cygwin').read()
359dabcff0SSatish Balay    if buf.find('1.5.11-1') > -1:
369dabcff0SSatish Balay      return 1
379dabcff0SSatish Balay    else:
389dabcff0SSatish Balay      return 0
399dabcff0SSatish Balay  return 0
409dabcff0SSatish Balay
4171384062SSatish Balaydef chkcygwinpython():
4271384062SSatish Balay  if os.path.exists('/usr/bin/cygcheck.exe'):
4371384062SSatish Balay    buf = os.popen('/usr/bin/cygcheck.exe -c python').read()
4471384062SSatish Balay    if buf.find('2.4') > -1:
4571384062SSatish Balay      return 1
4671384062SSatish Balay    else:
4771384062SSatish Balay      return 0
4871384062SSatish Balay  return 0
4971384062SSatish Balay
50836c2c52SSatish Balaydef rhl9():
51836c2c52SSatish Balay  try:
52594eb360SSatish Balay    file = open('/etc/redhat-release','r')
53836c2c52SSatish Balay  except:
54836c2c52SSatish Balay    return 0
55836c2c52SSatish Balay  try:
56836c2c52SSatish Balay    buf = file.read()
57836c2c52SSatish Balay    file.close()
58836c2c52SSatish Balay  except:
59836c2c52SSatish Balay    # can't read file - assume dangerous RHL9
60836c2c52SSatish Balay    return 1
61836c2c52SSatish Balay  if buf.find('Shrike') > -1:
62836c2c52SSatish Balay    return 1
63836c2c52SSatish Balay  else:
64836c2c52SSatish Balay    return 0
65836c2c52SSatish Balay
665d5a5a7bSMatthew Knepleydef petsc_configure(configure_options):
6759e9bfd6SSatish Balay  print '================================================================================='
6859e9bfd6SSatish Balay  print '             Configuring PETSc to compile on your system                         '
6959e9bfd6SSatish Balay  print '================================================================================='
7059e9bfd6SSatish Balay
71c43ea0feSSatish Balay  # Command line arguments take precedence (but don't destroy argv[0])
72c43ea0feSSatish Balay  sys.argv = sys.argv[:1] + configure_options + sys.argv[1:]
7359e9bfd6SSatish Balay  # check PETSC_ARCH
7459e9bfd6SSatish Balay  check_petsc_arch(sys.argv)
755fb2c094SBarry Smith
76c22cdea9SBarry Smith  # support a few standard configure option types
77ed6a7445SBarry Smith  for l in range(0,len(sys.argv)):
78c22cdea9SBarry Smith    name = sys.argv[l]
79c43ea0feSSatish Balay    if name.find('-download-') >= 0:
80ed6a7445SBarry Smith      sys.argv[l] = name.lower()
81c43ea0feSSatish Balay    if name.find('-enable-') >= 0:
82c43ea0feSSatish Balay      sys.argv[l] = name.replace('-enable-','-with-')
83c22cdea9SBarry Smith      if name.find('=') == -1: sys.argv[l] += '=1'
84c43ea0feSSatish Balay    if name.find('-disable-') >= 0:
85c43ea0feSSatish Balay      sys.argv[l] = name.replace('-disable-','-with-')
86c22cdea9SBarry Smith      if name.find('=') == -1: sys.argv[l] += '=0'
87c22cdea9SBarry Smith      elif name.endswith('=1'): sys.argv[l].replace('=1','=0')
88c43ea0feSSatish Balay    if name.find('-without-') >= 0:
89c43ea0feSSatish Balay      sys.argv[l] = name.replace('-without-','-with-')
90c22cdea9SBarry Smith      if name.find('=') == -1: sys.argv[l] += '=0'
91c22cdea9SBarry Smith      elif name.endswith('=1'): sys.argv[l].replace('=1','=0')
92c22cdea9SBarry Smith
93836c2c52SSatish Balay  # Disable threads on RHL9
94836c2c52SSatish Balay  if rhl9():
95f1365dfbSSatish Balay    sys.argv.append('--useThreads=0')
96ec1ee742SBarry Smith    print '================================================================================='
977d670a3cSBarry Smith    print ' *** RHL9 detected. Threads do not work correctly with this distribution ***'
987d670a3cSBarry Smith    print ' ******** Disabling thread usage for this run of config/configure.py *****'
99ec1ee742SBarry Smith    print '================================================================================='
100836c2c52SSatish Balay
1019dabcff0SSatish Balay  # Check for broken cygwin
1029dabcff0SSatish Balay  if chkcygwin():
103ec1ee742SBarry Smith    print '================================================================================='
1047d670a3cSBarry Smith    print ' *** cygwin-1.5.11-1 detected. config/configure.py fails with this version   ***'
1051e42869aSSatish Balay    print ' *** Please upgrade to cygwin-1.5.12-1 or newer version. This can  ***'
1061e42869aSSatish Balay    print ' *** be done by running cygwin-setup, selecting "next" all the way.***'
107ec1ee742SBarry Smith    print '================================================================================='
1089dabcff0SSatish Balay    sys.exit(3)
10971384062SSatish Balay  # Threads don't work for cygwin & python-2.4
11071384062SSatish Balay  if chkcygwinpython():
11171384062SSatish Balay    sys.argv.append('--useThreads=0')
11271384062SSatish Balay    print '================================================================================='
11371384062SSatish Balay    print ' *** Cygwin-python-2.4 detected. Threads do not work correctly with this version ***'
11471384062SSatish Balay    print ' ******** Disabling thread usage for this run of config/configure.py *****'
11571384062SSatish Balay    print '================================================================================='
1169dabcff0SSatish Balay
11787282423SMatthew Knepley  # Should be run from the toplevel
1185d5a5a7bSMatthew Knepley  pythonDir = os.path.abspath(os.path.join('python'))
11987282423SMatthew Knepley  bsDir     = os.path.join(pythonDir, 'BuildSystem')
12087282423SMatthew Knepley  if not os.path.isdir(pythonDir):
1215d5a5a7bSMatthew Knepley    raise RuntimeError('Run configure from $PETSC_DIR, not '+os.path.abspath('.'))
12287282423SMatthew Knepley  if not os.path.isdir(bsDir):
123ec1ee742SBarry Smith    print '================================================================================='
1249c4310d5SMatthew Knepley    print '''++ Could not locate BuildSystem in %s/python.''' % os.getcwd()
1259c4310d5SMatthew Knepley    print '''++ Downloading it using "bk clone http://sidl.bkbits.net/BuildSystem %s/python/BuildSystem"''' % os.getcwd()
126ec1ee742SBarry Smith    print '================================================================================='
1279c4310d5SMatthew Knepley    (status,output) = commands.getstatusoutput('bk clone http://sidl.bkbits.net/BuildSystem python/BuildSystem')
1287d7624c9SBarry Smith    if status:
1297d7624c9SBarry Smith      if output.find('ommand not found') >= 0:
130ec1ee742SBarry Smith        print '================================================================================='
131d688700cSSatish Balay        print '''** Unable to locate bk (Bitkeeper) to download BuildSystem; make sure bk is in your path'''
132d688700cSSatish Balay        print '''** or manually copy BuildSystem to $PETSC_DIR/python/BuildSystem from a machine where'''
133d688700cSSatish Balay        print '''** you do have bk installed and can clone BuildSystem. '''
134ec1ee742SBarry Smith        print '================================================================================='
1357d7624c9SBarry Smith      elif output.find('Cannot resolve host') >= 0:
136ec1ee742SBarry Smith        print '================================================================================='
137d688700cSSatish Balay        print '''** Unable to download BuildSystem. You must be off the network.'''
138d688700cSSatish Balay        print '''** Connect to the internet and run config/configure.py again.'''
139ec1ee742SBarry Smith        print '================================================================================='
1407d7624c9SBarry Smith      else:
141ec1ee742SBarry Smith        print '================================================================================='
142d688700cSSatish Balay        print '''** Unable to download BuildSystem. Please send this message to petsc-maint@mcs.anl.gov'''
143ec1ee742SBarry Smith        print '================================================================================='
1447d7624c9SBarry Smith      print output
14587282423SMatthew Knepley      sys.exit(3)
1464f8a5b45SBarry Smith
14787282423SMatthew Knepley  sys.path.insert(0, bsDir)
1485d5a5a7bSMatthew Knepley  sys.path.insert(0, pythonDir)
1495d5a5a7bSMatthew Knepley  import config.framework
150f56be888SMatthew Knepley  import cPickle
1514f8a5b45SBarry Smith
1522e22a60eSMatthew Knepley  # Disable shared libraries by default
1532e22a60eSMatthew Knepley  import nargs
1542e22a60eSMatthew Knepley  if nargs.Arg.findArgument('with-shared', sys.argv[1:]) is None:
1552e22a60eSMatthew Knepley    sys.argv.append('--with-shared=0')
1562e22a60eSMatthew Knepley
157c08a18f2SMatthew Knepley  framework = config.framework.Framework(sys.argv[1:]+['-configModules=PETSc.Configure','-optionsModule=PETSc.compilerOptions'], loadArgDB = 0)
15870ae1cd5SMatthew Knepley  try:
159f24f64feSBarry Smith    framework.configure(out = sys.stdout)
160358ebc22SMatthew Knepley    framework.storeSubstitutions(framework.argDB)
161f56be888SMatthew Knepley    framework.argDB['configureCache'] = cPickle.dumps(framework)
1627cfd0b05SBarry Smith    import PETSc.packages
1637cfd0b05SBarry Smith    for i in framework.packages:
1647cfd0b05SBarry Smith      if hasattr(i,'postProcess'):
1657cfd0b05SBarry Smith        i.postProcess()
1667cfd0b05SBarry Smith    framework.logClear()
167dd50d019SBarry Smith    return 0
168e9f3bb17SBarry Smith  except RuntimeError, e:
1697d670a3cSBarry Smith    emsg = str(e)
1707d670a3cSBarry Smith    if not emsg.endswith('\n'): emsg += '\n'
171fe09c992SBarry Smith    msg ='*********************************************************************************\n'\
172fe09c992SBarry Smith    +'         UNABLE to CONFIGURE with GIVEN OPTIONS    (see configure.log for details):\n' \
173fe09c992SBarry Smith    +'---------------------------------------------------------------------------------------\n'  \
1747d670a3cSBarry Smith    +emsg+'*********************************************************************************\n'
175e9f3bb17SBarry Smith    se = ''
1761a02243aSBarry Smith  except TypeError, e:
1777d670a3cSBarry Smith    emsg = str(e)
1787d670a3cSBarry Smith    if not emsg.endswith('\n'): emsg += '\n'
179fe09c992SBarry Smith    msg ='*********************************************************************************\n'\
180fe09c992SBarry Smith    +'                ERROR in COMMAND LINE ARGUMENT to config/configure.py \n' \
181fe09c992SBarry Smith    +'---------------------------------------------------------------------------------------\n'  \
1827d670a3cSBarry Smith    +emsg+'*********************************************************************************\n'
1831a02243aSBarry Smith    se = ''
18496dc2fe8SMatthew Knepley  except ImportError, e :
1857d670a3cSBarry Smith    emsg = str(e)
1867d670a3cSBarry Smith    if not emsg.endswith('\n'): emsg += '\n'
187fe09c992SBarry Smith    msg ='*********************************************************************************\n'\
188fe09c992SBarry Smith    +'                     UNABLE to FIND MODULE for config/configure.py \n' \
189fe09c992SBarry Smith    +'---------------------------------------------------------------------------------------\n'  \
1907d670a3cSBarry Smith    +emsg+'*********************************************************************************\n'
19196dc2fe8SMatthew Knepley    se = ''
192d7d3c4beSMatthew Knepley  except SystemExit, e:
193d7d3c4beSMatthew Knepley    if e.code is None or e.code == 0:
194d7d3c4beSMatthew Knepley      return
195fe09c992SBarry Smith    msg ='*********************************************************************************\n'\
196fe09c992SBarry Smith    +'           CONFIGURATION CRASH  (Please send configure.log to petsc-maint@mcs.anl.gov)\n' \
197fe09c992SBarry Smith    +'*********************************************************************************\n'
198d7d3c4beSMatthew Knepley    se  = str(e)
199e9f3bb17SBarry Smith  except Exception, e:
200fe09c992SBarry Smith    msg ='*********************************************************************************\n'\
201fe09c992SBarry Smith    +'          CONFIGURATION CRASH  (Please send configure.log to petsc-maint@mcs.anl.gov)\n' \
202fe09c992SBarry Smith    +'*********************************************************************************\n'
203e9f3bb17SBarry Smith    se  = str(e)
204e9f3bb17SBarry Smith
2057d670a3cSBarry Smith  framework.logClear()
206e9f3bb17SBarry Smith  print msg
207e9f3bb17SBarry Smith  if hasattr(framework, 'log'):
208f6614063SBarry Smith    import traceback
209f24f64feSBarry Smith    framework.log.write(msg+se)
210f24f64feSBarry Smith    traceback.print_tb(sys.exc_info()[2], file = framework.log)
2112418bae5SMatthew Knepley    if os.path.isfile(framework.logName+'.bkp'):
2122418bae5SMatthew Knepley      framework.logPrintDivider()
2132418bae5SMatthew Knepley      framework.logPrintBox('Previous configure logs below', debugSection = None)
2142418bae5SMatthew Knepley      f = file(framework.logName+'.bkp')
2152418bae5SMatthew Knepley      framework.log.write(f.read())
2162418bae5SMatthew Knepley      f.close()
217e9f3bb17SBarry Smith    sys.exit(1)
2185d5a5a7bSMatthew Knepley
2195d5a5a7bSMatthew Knepleyif __name__ == '__main__':
220a030c540SBarry Smith  petsc_configure([])
221759acf64SBarry Smith
222