mirror of
https://github.com/apache/nuttx.git
synced 2026-05-28 03:45:50 +08:00
libc: Remove C99_BOOL8 from libs/libxx/Kconfig
since it can be detected automatically by __STDC_VERSION__ Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
committed by
Alan Carvalho de Assis
parent
fb996ebaa9
commit
1e0f3ba4da
@@ -27,19 +27,4 @@
|
|||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
//***************************************************************************
|
|
||||||
// Namespace
|
|
||||||
//***************************************************************************
|
|
||||||
|
|
||||||
//***************************************************************************
|
|
||||||
// Namespace
|
|
||||||
//***************************************************************************
|
|
||||||
|
|
||||||
#ifndef CONFIG_C99_BOOL8
|
|
||||||
namespace std
|
|
||||||
{
|
|
||||||
using ::_Bool8;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif // __INCLUDE_CXX_CSTDBOOL
|
#endif // __INCLUDE_CXX_CSTDBOOL
|
||||||
|
|||||||
@@ -53,6 +53,14 @@
|
|||||||
# define CONFIG_HAVE_ANONYMOUS_UNION 1
|
# define CONFIG_HAVE_ANONYMOUS_UNION 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* ISO C99 supports _Bool */
|
||||||
|
|
||||||
|
#undef CONFIG_C99_BOOL
|
||||||
|
|
||||||
|
#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
||||||
|
# define CONFIG_C99_BOOL 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* C++ support */
|
/* C++ support */
|
||||||
|
|
||||||
#if defined(__cplusplus) && __cplusplus >= 201402L
|
#if defined(__cplusplus) && __cplusplus >= 201402L
|
||||||
|
|||||||
+17
-37
@@ -35,21 +35,21 @@
|
|||||||
#ifdef CONFIG_ARCH_STDBOOL_H
|
#ifdef CONFIG_ARCH_STDBOOL_H
|
||||||
# include <arch/stdbool.h>
|
# include <arch/stdbool.h>
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
/* NuttX will insist that the sizeof(bool) is 8-bits. The sizeof of _Bool
|
/* NuttX will insist that the sizeof(bool) is 8-bits. The sizeof of _Bool
|
||||||
* used by any specific compiler is implementation specific: It can vary from
|
* used by any specific compiler is implementation specific: It can vary from
|
||||||
* compiler-to-compiler and even vary between different versions of the same
|
* compiler-to-compiler and even vary between different versions of the same
|
||||||
* compiler. Compilers seems to be converging to sizeof(_Bool) == 1. If that
|
* compiler. Compilers seems to be converging to sizeof(_Bool) == 1. If that
|
||||||
* is true for your compiler, you should define CONFIG_C99_BOOL8 in your
|
* is true for your compiler, you should define CONFIG_C99_BOOL in your
|
||||||
* NuttX configuration for better standards compatibility.
|
* NuttX configuration for better standards compatibility.
|
||||||
*
|
*
|
||||||
* CONFIG_C99_BOOL8 - Means (1) your C++ compiler has sizeof(_Bool) == 8,
|
* CONFIG_C99_BOOL - Means (1) your C++ compiler has sizeof(_Bool) == 8,
|
||||||
* (2) your C compiler supports the C99 _Bool intrinsic type, and (3) that
|
* (2) your C compiler supports the C99 _Bool intrinsic type, and (3) that
|
||||||
* the C99 _Bool type also has size 1.
|
* the C99 _Bool type also has size 1.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#else
|
/* nuttx/compiler.h define or undefine CONFIG_C99_BOOL */
|
||||||
|
|
||||||
/* nuttx/compiler.h may also define or undefine CONFIG_C99_BOOL8 */
|
|
||||||
|
|
||||||
# include <nuttx/compiler.h>
|
# include <nuttx/compiler.h>
|
||||||
# include <stdint.h>
|
# include <stdint.h>
|
||||||
@@ -64,41 +64,21 @@
|
|||||||
* NOTE: Under C99 'bool' is required to be defined to be the intrinsic type
|
* NOTE: Under C99 'bool' is required to be defined to be the intrinsic type
|
||||||
* _Bool. However, in this NuttX context, we need backward compatibility
|
* _Bool. However, in this NuttX context, we need backward compatibility
|
||||||
* to pre-C99 standards where _Bool is not an intrinsic type. Hence, we
|
* to pre-C99 standards where _Bool is not an intrinsic type. Hence, we
|
||||||
* use _Bool8 as the underlying type (unless CONFIG_C99_BOOL8 is defined)
|
* use uint8_t as the underlying type (unless CONFIG_C99_BOOL is defined)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __cplusplus
|
# ifndef __cplusplus
|
||||||
#ifdef CONFIG_C99_BOOL8
|
# ifdef CONFIG_C99_BOOL
|
||||||
# define bool _Bool
|
# define bool _Bool
|
||||||
#else
|
# else
|
||||||
# define bool _Bool8
|
# define bool uint8_t
|
||||||
#endif
|
# endif
|
||||||
|
|
||||||
#define true (bool)1
|
# define true (bool)1
|
||||||
#define false (bool)0
|
# define false (bool)0
|
||||||
|
|
||||||
#define __bool_true_false_are_defined 1
|
# define __bool_true_false_are_defined 1
|
||||||
#endif /* __cplusplus */
|
# endif /* __cplusplus */
|
||||||
|
|
||||||
/****************************************************************************
|
# endif /* CONFIG_ARCH_STDBOOL_H */
|
||||||
* Public Types
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
/* A byte is the smallest address memory element (at least in architectures
|
|
||||||
* that do not support bit banding). The requirement is only that type _Bool
|
|
||||||
* be large enough to hold the values 0 and 1. We select uint8_t to minimize
|
|
||||||
* the RAM footprint of the executable.
|
|
||||||
*
|
|
||||||
* NOTE: We can't actually define the type _Bool here. Under C99 _Bool is
|
|
||||||
* an intrinsic type and cannot be the target of a typedef. However, in this
|
|
||||||
* NuttX context, we also need backward compatibility to pre-C99 standards
|
|
||||||
* where _Bool is not an intrinsic type. We work around this by using _Bool8
|
|
||||||
* as the underlying type.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef CONFIG_C99_BOOL8
|
|
||||||
typedef uint8_t _Bool8;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* CONFIG_ARCH_STDBOOL_H */
|
|
||||||
#endif /* __INCLUDE_STDBOOL_H */
|
#endif /* __INCLUDE_STDBOOL_H */
|
||||||
|
|||||||
@@ -5,14 +5,6 @@
|
|||||||
|
|
||||||
comment "Basic CXX Support"
|
comment "Basic CXX Support"
|
||||||
|
|
||||||
config C99_BOOL8
|
|
||||||
bool "sizeof(_Bool) is 8-bits"
|
|
||||||
default n
|
|
||||||
---help---
|
|
||||||
This setting means (1) your C++ compiler has sizeof(_Bool) == 8, (2)
|
|
||||||
your C compiler supports the C99 _Bool intrinsic type, and (2) that
|
|
||||||
the C99 _Bool type also has size 1.
|
|
||||||
|
|
||||||
config HAVE_CXX
|
config HAVE_CXX
|
||||||
bool "Have C++ compiler"
|
bool "Have C++ compiler"
|
||||||
default n
|
default n
|
||||||
|
|||||||
Reference in New Issue
Block a user