Skip to content
Snippets Groups Projects
Commit 8d1eb284 authored by Joel Closier's avatar Joel Closier
Browse files

add case for gcc48

parent c31c6174
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,10 @@ from LbUtils.LbRunConfigTools import prettify, loadConfig
from LbUtils.LbRunConfigTools import ManifestGenerator, XEnvGenerator
log.info( "Loading projectConfig.json from %s" % jsonMetadataDir )
config = loadConfig( jsonMetadataDir )
# Special case for gcc series 4
if os.environ['CMTCONFIG'] == 'x86_64-slc6-gcc48-opt':
if os.path.exists( os.path.join( jsonMetadataDir, 'projectConfig_gcc48.json' ) ) :
config = loadConfig( jsonMetadataDir, 'projectConfig_gcc48.json' )
for opt in ( 'cmtconfig', 'python_version', 'dir_base' ):
if opt not in config:
......
{
"name": "LHCbDirac",
"version": "v8r7p1",
"used_projects": {
"project": [
[ "Dirac", "v6r17p19",
[ "bin", "python", "lib" ]
],
[ "LHCbGrid", "v11r6",
[ "bin", "python", "lib" ]
]
]
},
"heptools": {
"binary_tag": "$CMTCONFIG",
"version": "79",
"packages": [
[ "Python", "2.7.10",
[ "bin" ]
],
[ "libtool", "2.4.2",
[ "bin", "python", "lib" ]
],
[ "pygsi", "0.6.3",
[ "bin", "python", "lib" ]
],
[ "pygraphics", "2.0",
[ "bin", "python", "lib" ]
],
[ "qt", "4.8.7",
[ "bin", "python", "lib" ]
],
[ "gcc", "4.9.3",
[ "bin", "python", "lib" ]
],
[ "mysql", "5.7.11",
[ "bin", "python", "lib" ]
],
[ "pyparsing", "2.1.8",
[ "bin", "python" ]
],
[ "pytools", "2.0",
[ "bin", "python" ]
],
[ "simplegeneric", "0.8.1",
[ "bin", "python", "lib" ]
],
[ "wcwidth", "0.1.7",
[ "bin", "python", "lib" ]
],
[ "prompt_toolkit", "1.0.3",
[ "bin", "python", "lib" ]
],
[ "pickleshare", "0.7.2",
[ "bin", "python", "lib" ]
],
[ "pathlib2", "2.1.0",
[ "bin", "python", "lib" ]
],
[ "backports", "1.0.0",
[ "bin", "python", "lib" ]
],
[ "pexpect", "4.2.0",
[ "bin", "python", "lib" ]
],
[ "ipython_genutils", "0.1.0",
[ "bin", "python", "lib" ]
]
]
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment