2015-04-11 07:44:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2014, Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2015-12-04 23:09:39 +08:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Macros to abstract toolchain specific capabilities
|
|
|
|
*
|
2015-10-21 00:42:33 +08:00
|
|
|
* This file contains various macros to abstract compiler capabilities that
|
|
|
|
* utilize toolchain specific attributes and/or pragmas.
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#ifndef ZEPHYR_INCLUDE_TOOLCHAIN_H_
|
|
|
|
#define ZEPHYR_INCLUDE_TOOLCHAIN_H_
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2017-05-11 04:28:38 +08:00
|
|
|
#if defined(__XCC__)
|
|
|
|
#include <toolchain/xcc.h>
|
|
|
|
#elif defined(__GNUC__) || (defined(_LINKER) && defined(__GCC_LINKER_CMD__))
|
2015-04-11 07:44:37 +08:00
|
|
|
#include <toolchain/gcc.h>
|
|
|
|
#else
|
2015-04-28 06:03:01 +08:00
|
|
|
#include <toolchain/other.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
#endif
|
|
|
|
|
2018-09-15 01:43:44 +08:00
|
|
|
#endif /* ZEPHYR_INCLUDE_TOOLCHAIN_H_ */
|