| 123456789101112131415161718192021222324252627282930 |
- Import("env")
- env.Append(
- CPPPATH=[
- "#/lib/mbedtls",
- "#/lib/mbedtls/include",
- ],
- )
- libenv = env.Clone(FW_LIB_NAME="mbedtls")
- libenv.ApplyLibFlags()
- libenv.AppendUnique(
- CCFLAGS=[
- # Required for lib to be linkable with .faps
- "-mword-relocations",
- "-mlong-calls",
- ],
- )
- sources = [
- "mbedtls/library/des.c",
- "mbedtls/library/sha1.c",
- "mbedtls/library/platform_util.c",
- ]
- lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
- libenv.Install("${LIB_DIST_DIR}", lib)
- Return("lib")
|