forked from prathje/DisruptaBLE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.mk.example
34 lines (26 loc) · 1.2 KB
/
config.mk.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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
# ARM toolchain prefix for arm-none-eabi target
# see https://launchpad.net/gcc-arm-embedded/+download
#TOOLCHAIN_STM32 := /usr/bin/arm-none-eabi-
# Toolchain prefix for local posix target
# can be left empy most of the time (default: search in $PATH)
#TOOLCHAIN_POSIX :=
# Path to FreeRTOS source, see http://www.freertos.org.
#FREERTOS_PREFIX := $(HOME)/.local/FreeRTOSv9.0.0/
# Path to the st-flash binary, see https://github.com/texane/stlink (default: search in $PATH)
#ST_FLASH_PREFIX :=
# Path to the openocd binary (default: search in $PATH)
#OOCD_PREFIX :=
# 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_STM32 :=
#CLANG_SYSROOT_POSIX :=