mirror of
https://gitlab.com/d3tn/ud3tn.git
synced 2026-08-16 13:01:06 +02:00
Former releases of uD3TN have included support for STM32/FreeRTOS. Having this support from the first moment on was a good thing in order to optimize for platforms with limited resources. As this platform is not used in current uD3TN setups and as it results in quite some maintenance work, it is removed with this commit. The removed parts cover the implementation itself, tests, tools, documentation, parts of the build/make scripts as well as licensing information. Signed-off-by: Marius Feldmann <marius.feldmann@d3tn.com>
20 lines
761 B
Text
20 lines
761 B
Text
# Example for Makefile configuration options
|
|
# Copy this to config.mk and either download the required software packages
|
|
# and extract them to an arbitrary directory or install them
|
|
# with your package manager. The variables show the defaults applied by the
|
|
# build system automatically.
|
|
|
|
# Toolchain to be used. `gcc` or `clang` can be selected
|
|
#TOOLCHAIN := gcc
|
|
|
|
# Toolchain prefix for local posix target
|
|
# can be left empy most of the time (default: search in $PATH)
|
|
#TOOLCHAIN_POSIX :=
|
|
|
|
# Prefix for the Clang compiler
|
|
#CLANG_PREFIX :=
|
|
|
|
# --sysroot provided to the Clang compiler, useful for providing the path to
|
|
# the embedded toolchain so the proper headers are found.
|
|
# If left empty, the option is not provided to the compiler.
|
|
#CLANG_SYSROOT_POSIX :=
|