15d5a5a7bSMatthew Knepley#!/usr/bin/env python 25d5a5a7bSMatthew Knepleyimport os 35d5a5a7bSMatthew Knepleyimport sys 44f8a5b45SBarry Smithimport commands 55d5a5a7bSMatthew Knepley 64b8aa89bSBarry Smith 7b26a8723SBarry Smithif not hasattr(sys, 'version_info') or not sys.version_info[1] >= 2: 8b26a8723SBarry Smith print '******** You must have Python version 2.2 or higher to run configure ********' 9b26a8723SBarry Smith sys.exit(4) 102fb34ac0SMatthew Knepley 114b8aa89bSBarry Smithdef getarch(): 1264382af2SBarry Smith if os.path.basename(sys.argv[0]).startswith('configure'): return '' 13b88bae4cSBarry Smith else: return os.path.basename(sys.argv[0])[:-3] 144b8aa89bSBarry Smith 155d5a5a7bSMatthew Knepleydef petsc_configure(configure_options): 165fb2c094SBarry Smith # use the name of the config/configure_arch.py to determine the arch 175fb2c094SBarry Smith if getarch(): configure_options.append('-PETSC_ARCH='+getarch()) 185fb2c094SBarry Smith 1987282423SMatthew Knepley # Should be run from the toplevel 205d5a5a7bSMatthew Knepley pythonDir = os.path.abspath(os.path.join('python')) 2187282423SMatthew Knepley bsDir = os.path.join(pythonDir, 'BuildSystem') 2287282423SMatthew Knepley if not os.path.isdir(pythonDir): 235d5a5a7bSMatthew Knepley raise RuntimeError('Run configure from $PETSC_DIR, not '+os.path.abspath('.')) 2487282423SMatthew Knepley if not os.path.isdir(bsDir): 254f8a5b45SBarry Smith print '''Could not locate BuildSystem in $PETSC_DIR/python. 264f8a5b45SBarry Smith Downloading it using "bk clone bk://sidl.bkbits.net/BuildSystem $PETSC_DIR/python/BuildSystem"''' 274f8a5b45SBarry Smith (status,output) = commands.getstatusoutput('bk clone bk://sidl.bkbits.net/BuildSystem python/BuildSystem') 287d7624c9SBarry Smith if status: 297d7624c9SBarry Smith if output.find('ommand not found') >= 0: 30b26a8723SBarry Smith print '''******** Unable to locate bk (Bitkeeper) to download BuildSystem; make sure bk is in your path\nor manually copy BuildSystem to $PETSC_DIR/python/BuildSystem from a machine where you do have bk installed and can clone BuildSystem.******** ''' 317d7624c9SBarry Smith elif output.find('Cannot resolve host') >= 0: 32b26a8723SBarry Smith print '''******** Unable to download BuildSystem. You must be off the network. Connect to the internet and run config/configure.py again******** ''' 337d7624c9SBarry Smith else: 34b26a8723SBarry Smith print '''******** Unable to download BuildSystem. Please send this message to petsc-maint@mcs.anl.gov******** ''' 357d7624c9SBarry Smith print output 3687282423SMatthew Knepley sys.exit(3) 374f8a5b45SBarry Smith 3887282423SMatthew Knepley sys.path.insert(0, bsDir) 395d5a5a7bSMatthew Knepley sys.path.insert(0, pythonDir) 405d5a5a7bSMatthew Knepley import config.framework 41dd50d019SBarry Smith 424f8a5b45SBarry Smith 432c4e8892SMatthew Knepley framework = config.framework.Framework(sys.argv[1:]+['-configModules=PETSc.Configure']+configure_options, loadArgDB = 0) 445d5a5a7bSMatthew Knepley framework.argDB['CPPFLAGS'] = '' 455d5a5a7bSMatthew Knepley framework.argDB['LIBS'] = '' 4670ae1cd5SMatthew Knepley try: 473e4f49c0SMatthew Knepley framework.configure(out = sys.stdout) 48358ebc22SMatthew Knepley framework.storeSubstitutions(framework.argDB) 49dd50d019SBarry Smith return 0 50e9f3bb17SBarry Smith except RuntimeError, e: 51e9f3bb17SBarry Smith msg = '******* Unable to configure with given options ******* (see configure.log for full details):\n'+str(e)+'\n******************************************************\n' 52e9f3bb17SBarry Smith se = '' 53*1a02243aSBarry Smith except TypeError, e: 54*1a02243aSBarry Smith msg = '******* Error in command line argument to configure.py ***********\n'+str(e)+'\n******************************************************\n' 55*1a02243aSBarry Smith se = '' 56e9f3bb17SBarry Smith except Exception, e: 57e9f3bb17SBarry Smith msg = '******* CONFIGURATION CRASH **** Please send configure.log to petsc-maint@mcs.anl.gov\n' 58e9f3bb17SBarry Smith se = str(e) 59e9f3bb17SBarry Smith 60e9f3bb17SBarry Smith print msg 61e9f3bb17SBarry Smith if hasattr(framework, 'log'): 62e9f3bb17SBarry Smith import traceback 63e9f3bb17SBarry Smith framework.log.write(msg+se) 64e9f3bb17SBarry Smith traceback.print_tb(sys.exc_info()[2], file = framework.log) 65e9f3bb17SBarry Smith sys.exit(1) 665d5a5a7bSMatthew Knepley 675d5a5a7bSMatthew Knepleyif __name__ == '__main__': 68a030c540SBarry Smith petsc_configure([]) 69759acf64SBarry Smith 70