1234567891011121314151617181920212223 |
- #ifndef ZEPHYR_INCLUDE_TOOLCHAIN_ARMCLANG_H_
- #define ZEPHYR_INCLUDE_TOOLCHAIN_ARMCLANG_H_
- #include <toolchain/llvm.h>
- #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
|