include/nuttx: unify feature definition in compiler.h
Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
parent
8254b374dd
commit
af292daf2b
@ -63,10 +63,10 @@
|
|||||||
|
|
||||||
/* C++ support */
|
/* C++ support */
|
||||||
|
|
||||||
|
#undef CONFIG_HAVE_CXX14
|
||||||
|
|
||||||
#if defined(__cplusplus) && __cplusplus >= 201402L
|
#if defined(__cplusplus) && __cplusplus >= 201402L
|
||||||
# define CONFIG_HAVE_CXX14 1
|
# define CONFIG_HAVE_CXX14 1
|
||||||
#else
|
|
||||||
# undef CONFIG_HAVE_CXX14
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* GCC-specific definitions *************************************************/
|
/* GCC-specific definitions *************************************************/
|
||||||
@ -123,6 +123,8 @@
|
|||||||
* unnecessary "weak" functions can be excluded from the link.
|
* unnecessary "weak" functions can be excluded from the link.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#undef CONFIG_HAVE_WEAKFUNCTIONS
|
||||||
|
|
||||||
# if !defined(__CYGWIN__) && !defined(CONFIG_ARCH_GNU_NO_WEAKFUNCTIONS)
|
# if !defined(__CYGWIN__) && !defined(CONFIG_ARCH_GNU_NO_WEAKFUNCTIONS)
|
||||||
# define CONFIG_HAVE_WEAKFUNCTIONS 1
|
# define CONFIG_HAVE_WEAKFUNCTIONS 1
|
||||||
# define weak_alias(name, aliasname) \
|
# define weak_alias(name, aliasname) \
|
||||||
@ -131,7 +133,6 @@
|
|||||||
# define weak_function __attribute__((weak))
|
# define weak_function __attribute__((weak))
|
||||||
# define weak_const_function __attribute__((weak, __const__))
|
# define weak_const_function __attribute__((weak, __const__))
|
||||||
# else
|
# else
|
||||||
# undef CONFIG_HAVE_WEAKFUNCTIONS
|
|
||||||
# define weak_alias(name, aliasname)
|
# define weak_alias(name, aliasname)
|
||||||
# define weak_data
|
# define weak_data
|
||||||
# define weak_function
|
# define weak_function
|
||||||
|
Loading…
Reference in New Issue
Block a user