2022-07-03 08:44:38 +00:00
|
|
|
Import("env")
|
|
|
|
|
|
|
|
env.Append(
|
|
|
|
CPPPATH=[
|
|
|
|
"#/lib/mbedtls",
|
|
|
|
"#/lib/mbedtls/include",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
libenv = env.Clone(FW_LIB_NAME="mbedtls")
|
|
|
|
libenv.ApplyLibFlags()
|
|
|
|
|
2022-09-19 12:39:00 +00:00
|
|
|
libenv.AppendUnique(
|
|
|
|
CCFLAGS=[
|
|
|
|
# Required for lib to be linkable with .faps
|
|
|
|
"-mword-relocations",
|
|
|
|
"-mlong-calls",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2022-08-07 15:09:00 +00:00
|
|
|
sources = [
|
|
|
|
"mbedtls/library/des.c",
|
|
|
|
"mbedtls/library/sha1.c",
|
|
|
|
"mbedtls/library/platform_util.c",
|
|
|
|
]
|
2022-07-03 08:44:38 +00:00
|
|
|
|
|
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
|
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
|
|
|
Return("lib")
|