Lines Matching refs:env
54 env['LIBS'] = list(map(lambda x:'-l%s'%x, env_cfg.get_boot_libs()))
55 env['LIBPATH'] = env_cfg.get_bootlib_path()
56 env.Append(LIBPATH=os.path.join('-Lbuild', 'libs', 'boot_libs'))
57 env = env.Clone() variable
86 env.Replace(CPPDEFINES=defines)
87 env.Replace(CCFLAGS=boot_cflags)
88 env.Replace(ASFLAGS=boot_asflags)
89 env.Replace(CPPPATH=incs)
90 env.Replace(LINKFLAGS=ld_flags)
97 …objs += env.SConscript(os.path.join(src, 'SConscript'), {'env':env,}, variant_dir = os.path.join('…
99 boot_elf = env.Command(target=os.path.join("#", cache_path, "loader_boot.elf"), source=sorted(objs)…
100 boot_bin = env.Command(target=os.path.join("#", cache_path, "hi_loader_boot.bin"), source=boot_elf,
104 …loader_signed_bin = env.Command(target=os.path.join("#", bin_path, "%s_loader_signed.bin"%(CONFIG_…
108 …loader_signed_bin = env.Command(target=os.path.join("#", bin_path, "%s_loader_signed.bin"%(CONFIG_…
111 …loader_signed_bin = env.Command(target=os.path.join("#", bin_path, "%s_loader_signed.bin"%(CONFIG_…
114 env.AddPostAction(boot_bin, cleanup)