diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-14 11:36:56 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-14 11:47:20 +0100 |
commit | 4345869df894faae79f68d4a835e2e825a4778f7 (patch) | |
tree | 3db23ff72aed2caf0bf24d505fe13ffd9ccad43d /target/config/Config.in.float.default | |
parent | 176ed2d7b246a39cb0b9bc3f6cc3bfe3335b250f (diff) |
rework float support
ARM, MIPS and PPC have support for soft or hard float configuration
of toolchain and system. Generalize the support for this in OpenADK.
Diffstat (limited to 'target/config/Config.in.float.default')
-rw-r--r-- | target/config/Config.in.float.default | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/target/config/Config.in.float.default b/target/config/Config.in.float.default new file mode 100644 index 000000000..087a79fff --- /dev/null +++ b/target/config/Config.in.float.default @@ -0,0 +1,14 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +config ADK_soft_float + bool + +config ADK_hard_float + bool + +config ADK_TARGET_FLOAT + string + default "hard" if ADK_hard_float + default "soft" if ADK_soft_float + |