diff options
author | Chris Packham <judge.packham@gmail.com> | 2021-02-02 20:01:38 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2021-02-02 20:06:32 +1300 |
commit | 51cb8939f830584b5b0db4f018dfa73e311308f6 (patch) | |
tree | bb651339a6646667d3f914d64f70d926fbe162d5 /config | |
parent | 2340fa29125291b1db770616fcdc96a8ac1d103e (diff) | |
download | crosstool-ng-51cb8939f830584b5b0db4f018dfa73e311308f6.tar.gz crosstool-ng-51cb8939f830584b5b0db4f018dfa73e311308f6.tar.bz2 crosstool-ng-51cb8939f830584b5b0db4f018dfa73e311308f6.zip |
config/cc/gcc.in: Fix typo CC_GCC_DEC_FLOAT -> CC_GCC_DEC_FLOATS
This has gone unnoticed for a while, it looks like all configurations
have probably been using the default floats behaviour. Newer kconfig
tells us the default value is not in the choice so lets fix this in
preparation.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/cc/gcc.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/cc/gcc.in b/config/cc/gcc.in index 9d9b6921..21e7db06 100644 --- a/config/cc/gcc.in +++ b/config/cc/gcc.in @@ -382,7 +382,7 @@ choice CC_GCC_DEC_FLOATS_CHOICE The default is to let ./configure decide. -config CC_GCC_DEC_FLOAT_AUTO +config CC_GCC_DEC_FLOATS_AUTO bool "auto" help Let ./configure decide. If you say 'y' here, gcc will default to: @@ -390,12 +390,12 @@ config CC_GCC_DEC_FLOAT_AUTO - 'dpd' for powerpc - 'no' for the other architectures -config CC_GCC_DEC_FLOAT_BID +config CC_GCC_DEC_FLOATS_BID bool "bid" help Use the 'binary integer decimal' format for decimal floats. -config CC_GCC_DEC_FLOAT_DPD +config CC_GCC_DEC_FLOATS_DPD bool "dpd" help Use the 'densely packed decimal' for decimal floats. |