@@ -406,35 +406,35 @@ def generate_environment_specs(self, raw):
406406 def generate_compiler_specs (self , raw ):
407407 compilers = {}
408408
409- bootstrap = {}
410- bootstrap ["packages" ] = {
411- "external" : [
412- "perl" ,
413- "m4" ,
414- "autoconf" ,
415- "automake" ,
416- "libtool" ,
417- "gawk" ,
418- "python" ,
419- "texinfo" ,
420- "gawk" ,
421- ],
422- "variants" : {
423- "gcc" : "[build_type=Release ~bootstrap +strip]" ,
424- "mpc" : "[libs=static]" ,
425- "gmp" : "[libs=static]" ,
426- "mpfr" : "[libs=static]" ,
427- "zstd" : "[libs=static]" ,
428- "zlib" : "[~shared]" ,
429- },
430- }
431- bootstrap_spec = raw ["bootstrap" ]["spec" ]
432- bootstrap ["specs" ] = [
433- f"{ bootstrap_spec } languages=c,c++" ,
434- "squashfs default_compression=zstd" ,
435- ]
436- bootstrap ["exclude_from_cache" ] = ["cuda" , "nvhpc" , "perl" ]
437- compilers ["bootstrap" ] = bootstrap
409+ # bootstrap = {}
410+ # bootstrap["packages"] = {
411+ # "external": [
412+ # "perl",
413+ # "m4",
414+ # "autoconf",
415+ # "automake",
416+ # "libtool",
417+ # "gawk",
418+ # "python",
419+ # "texinfo",
420+ # "gawk",
421+ # ],
422+ # "variants": {
423+ # "gcc": "[build_type=Release ~bootstrap +strip]",
424+ # "mpc": "[libs=static]",
425+ # "gmp": "[libs=static]",
426+ # "mpfr": "[libs=static]",
427+ # "zstd": "[libs=static]",
428+ # "zlib": "[~shared]",
429+ # },
430+ # }
431+ # bootstrap_spec = raw["bootstrap"]["spec"]
432+ # bootstrap["specs"] = [
433+ # f"{bootstrap_spec} languages=c,c++",
434+ # "squashfs default_compression=zstd",
435+ # ]
436+ # bootstrap["exclude_from_cache"] = ["cuda", "nvhpc", "perl"]
437+ # compilers["bootstrap"] = bootstrap
438438
439439 gcc = {}
440440 gcc ["packages" ] = {
@@ -459,7 +459,7 @@ def generate_compiler_specs(self, raw):
459459 },
460460 }
461461 gcc ["specs" ] = raw ["gcc" ]["specs" ]
462- gcc ["requires" ] = bootstrap_spec
462+ # gcc["requires"] = bootstrap_spec
463463 gcc ["exclude_from_cache" ] = ["cuda" , "nvhpc" , "perl" ]
464464 compilers ["gcc" ] = gcc
465465 if raw ["llvm" ] is not None :
0 commit comments