eb4ff3c0fd
* github: bundling debug folder with scripts; docs: fixes & updates; fbt: added FAP_EXAMPLES variable to enable building example apps. Disabled by default. fbt: added TERM to list of proxied environment variables * fbt: better help output; disabled implicit_deps_unchanged; added color to import validator reports * fbt: moved debug configuration to separate tool * fbt: proper dependency tracker for SDK source file; renamed linker script for external apps * fbt: fixed debug elf path * fbt: packaging sdk archive * scripts: fixed sconsdist.py * fbt: reworked sdk packing; docs: updates * docs: info on cli target; linter fixes * fbt: moved main code to scripts folder * scripts: packing update into .tgz * fbt, scripts: reworked copro_dist to build .tgz * scripts: fixed naming for archived updater package * Scripts: fix ぐるぐる回る Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
74 lines
1.8 KiB
Python
74 lines
1.8 KiB
Python
from SCons.Errors import StopError
|
|
from SCons.Tool import asm
|
|
from SCons.Tool import gcc
|
|
from SCons.Tool import gxx
|
|
from SCons.Tool import ar
|
|
from SCons.Tool import gnulink
|
|
import strip
|
|
import gdb
|
|
import objdump
|
|
|
|
from SCons.Action import _subproc
|
|
import subprocess
|
|
|
|
|
|
def prefix_commands(env, command_prefix, cmd_list):
|
|
for command in cmd_list:
|
|
if command in env:
|
|
env[command] = command_prefix + env[command]
|
|
|
|
|
|
def _get_tool_version(env, tool):
|
|
verstr = "version unknown"
|
|
proc = _subproc(
|
|
env,
|
|
env.subst("${%s} --version" % tool),
|
|
stdout=subprocess.PIPE,
|
|
stderr="devnull",
|
|
stdin="devnull",
|
|
universal_newlines=True,
|
|
error="raise",
|
|
shell=True,
|
|
)
|
|
if proc:
|
|
verstr = proc.stdout.readline()
|
|
proc.communicate()
|
|
return verstr
|
|
|
|
|
|
def generate(env, **kw):
|
|
for orig_tool in (asm, gcc, gxx, ar, gnulink, strip, gdb, objdump):
|
|
orig_tool.generate(env)
|
|
env.SetDefault(
|
|
TOOLCHAIN_PREFIX=kw.get("toolchain_prefix"),
|
|
)
|
|
prefix_commands(
|
|
env,
|
|
env.subst("$TOOLCHAIN_PREFIX"),
|
|
[
|
|
"AR",
|
|
"AS",
|
|
"CC",
|
|
"CXX",
|
|
"OBJCOPY",
|
|
"RANLIB",
|
|
"STRIP",
|
|
"GDB",
|
|
"GDBPY",
|
|
"OBJDUMP",
|
|
],
|
|
)
|
|
# Call CC to check version
|
|
if whitelisted_versions := kw.get("versions", ()):
|
|
cc_version = _get_tool_version(env, "CC")
|
|
# print("CC version =", cc_version)
|
|
# print(list(filter(lambda v: v in cc_version, whitelisted_versions)))
|
|
if not any(filter(lambda v: v in cc_version, whitelisted_versions)):
|
|
raise StopError(
|
|
f"Toolchain version is not supported. Allowed: {whitelisted_versions}, toolchain: {cc_version} "
|
|
)
|
|
|
|
|
|
def exists(env):
|
|
return True
|