1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_include_directories(Include)
4
5# As of CMSIS v5.6.0, __PROGRAM_START is to indicate whether the
6# ARM vendor or the OS supplies data/bss init routine, otherwise
7# the default data/bss init routine for the selected toolchain is
8# added. We set the macro in build-time to guarantee compatibility
9# with all existing ARM platforms.
10
11zephyr_compile_definitions(__PROGRAM_START)
12