Skip to content
Snippets Groups Projects

Implementation of layered LCG software stacks

Merged Pere Mato Vila requested to merge SPI-1401 into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -429,7 +429,7 @@ def get_available_compilers(arch, osvers):
try:
resp = urllib2.urlopen(urlinfo)
for l in resp.readlines():
if l[0] == '#' : continue
if l[0] == '#' or not l.strip() : continue
d = parse_info(l)
if d['NAME'] in ('clang','gcc'):
compilers[make_compilerversion(d['NAME'],d['VERSION'])] = {'NAME':'-'.join((d['NAME'],d['VERSION'],d['HASH'])),'DEPENDS': d['DEPENDS']}
Loading