9
0
Fork 0

Add options to define compiler characteristics

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@13 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2007-02-20 20:39:12 +00:00
parent 965d7f3ce4
commit 93d21048f1
2 changed files with 20 additions and 0 deletions

View File

@ -132,9 +132,19 @@ CONFIG_ARCH_KFREE=n
#
# General Compile environment setup
#
# CONFIG_HAVE_INLINE - enable if your compiler supports
# inline functions
# CONFIG_HAVE_DOUBLE - enable if your compiler supports type
# double.
# CONFIG_HAVE_LONG_LONG - enable if your architecture supports
# long long types and if you plan to use them
# CONFIG_CAN_PASS_STRUCTS - enable if your compiler supports
# passing structures and unions as values
#
CONFIG_HAVE_INLINE=y
CONFIG_HAVE_DOUBLE=y
CONFIG_HAVE_LONG_LONG=n
CONFIG_CAN_PASS_STRUCTS=y
#
# General build options

View File

@ -99,9 +99,19 @@ CONFIG_ARCH_KFREE=n
#
# General Compile environment setup
#
# CONFIG_HAVE_INLINE - enable if your compiler supports
# inline functions
# CONFIG_HAVE_DOUBLE - enable if your compiler supports type
# double.
# CONFIG_HAVE_LONG_LONG - enable if your architecture supports
# long long types and if you plan to use them
# CONFIG_CAN_PASS_STRUCTS - enable if your compiler supports
# passing structures and unions as values
#
CONFIG_HAVE_INLINE=y
CONFIG_HAVE_DOUBLE=y
CONFIG_HAVE_LONG_LONG=n
CONFIG_CAN_PASS_STRUCTS=y
#
# General build options