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>
122 lines
2.8 KiB
Plaintext
122 lines
2.8 KiB
Plaintext
from SCons.Errors import UserError
|
|
|
|
|
|
Import("ENV")
|
|
|
|
|
|
from fbt.appmanifest import FlipperAppType
|
|
|
|
appenv = ENV.Clone(
|
|
tools=[
|
|
(
|
|
"fbt_extapps",
|
|
{
|
|
"EXT_APPS_WORK_DIR": ENV.subst(
|
|
"${BUILD_DIR}/.extapps",
|
|
)
|
|
},
|
|
),
|
|
"fbt_assets",
|
|
]
|
|
)
|
|
|
|
appenv.Replace(
|
|
LINKER_SCRIPT="application_ext",
|
|
)
|
|
|
|
appenv.AppendUnique(
|
|
CCFLAGS=[
|
|
"-ggdb3",
|
|
"-mword-relocations",
|
|
"-mlong-calls",
|
|
"-fno-common",
|
|
"-nostdlib",
|
|
"-fvisibility=hidden",
|
|
],
|
|
LINKFLAGS=[
|
|
"-Ur",
|
|
"-Wl,-Ur",
|
|
# "-Wl,--orphan-handling=error",
|
|
"-Bsymbolic",
|
|
"-nostartfiles",
|
|
"-mlong-calls",
|
|
"-fno-common",
|
|
"-nostdlib",
|
|
"-Wl,--gc-sections",
|
|
"-Wl,--no-export-dynamic",
|
|
"-fvisibility=hidden",
|
|
"-Wl,-e${APP_ENTRY}",
|
|
"-Xlinker",
|
|
"-Map=${TARGET}.map",
|
|
"-specs=nano.specs",
|
|
"-specs=nosys.specs",
|
|
],
|
|
LIBS=[
|
|
"m",
|
|
"gcc",
|
|
"stdc++",
|
|
"supc++",
|
|
],
|
|
)
|
|
|
|
|
|
extapps = appenv["_extapps"] = {
|
|
"compact": {},
|
|
"debug": {},
|
|
"validators": {},
|
|
"dist": {},
|
|
}
|
|
|
|
|
|
def build_app_as_external(env, appdef):
|
|
compact_elf, debug_elf, validator = env.BuildAppElf(appdef)
|
|
extapps["compact"][appdef.appid] = compact_elf
|
|
extapps["debug"][appdef.appid] = debug_elf
|
|
extapps["validators"][appdef.appid] = validator
|
|
extapps["dist"][appdef.appid] = (appdef.fap_category, compact_elf)
|
|
|
|
|
|
apps_to_build_as_faps = [
|
|
FlipperAppType.PLUGIN,
|
|
FlipperAppType.EXTERNAL,
|
|
]
|
|
if appenv["DEBUG_TOOLS"]:
|
|
apps_to_build_as_faps.append(FlipperAppType.DEBUG)
|
|
|
|
for apptype in apps_to_build_as_faps:
|
|
for app in appenv["APPBUILD"].get_apps_of_type(apptype, True):
|
|
build_app_as_external(appenv, app)
|
|
|
|
# Ugly access to global option
|
|
if extra_app_list := GetOption("extra_ext_apps"):
|
|
for extra_app in extra_app_list.split(","):
|
|
build_app_as_external(appenv, appenv["APPMGR"].get(extra_app))
|
|
|
|
|
|
if appenv["FORCE"]:
|
|
appenv.AlwaysBuild(extapps["compact"].values())
|
|
|
|
|
|
# Deprecation stub
|
|
def legacy_app_build_stub(**kw):
|
|
raise UserError(f"Target name 'firmware_extapps' is deprecated, use 'faps' instead")
|
|
|
|
|
|
appenv.PhonyTarget("firmware_extapps", appenv.Action(legacy_app_build_stub, None))
|
|
|
|
|
|
Alias("faps", extapps["compact"].values())
|
|
Alias("faps", extapps["validators"].values())
|
|
|
|
if appsrc := appenv.subst("$APPSRC"):
|
|
app_manifest, fap_file, app_validator = appenv.GetExtAppFromPath(appsrc)
|
|
appenv.PhonyTarget(
|
|
"launch_app",
|
|
'${PYTHON3} scripts/runfap.py ${SOURCE} --fap_dst_dir "/ext/apps/${FAP_CATEGORY}"',
|
|
source=fap_file,
|
|
FAP_CATEGORY=app_manifest.fap_category,
|
|
)
|
|
appenv.Alias("launch_app", app_validator)
|
|
|
|
Return("extapps")
|