You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
637 B
23 lines
637 B
/* |
|
* 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_ */
|
|
|