zephyr/include/toolchain/armclang.h
Torsten Rasmussen ce8f8c9f17 armclang: adding toolchain/armclang.h header
The armclang.h includes the toolchain/llvm.h header.

Also it redifines the __GENERIC_SECTION and Z_GENERIC_SECTION so that
they includes the `used` attribute which is needed by armlink.

Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
2021-08-30 08:54:23 -04:00

24 lines
637 B
C

/*
* Copyright (c) 2021 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_TOOLCHAIN_ARMCLANG_H_
#define ZEPHYR_INCLUDE_TOOLCHAIN_ARMCLANG_H_
#include <toolchain/llvm.h>
/*
* To reuse as much as possible from the llvm.h header we only redefine the
* __GENERIC_SECTION and Z_GENERIC_SECTION macros here to include the `used` keyword.
*/
#undef __GENERIC_SECTION
#undef Z_GENERIC_SECTION
#define __GENERIC_SECTION(segment) __attribute__((section(STRINGIFY(segment)), used))
#define Z_GENERIC_SECTION(segment) __GENERIC_SECTION(segment)
#endif /* ZEPHYR_INCLUDE_TOOLCHAIN_ARMCLANG_H_ */