You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by vi...@apache.org on 2017/04/06 22:42:27 UTC

incubator-mynewt-core git commit: MYNEWT-712 Syscfg: Fix float_user to have syscfg

Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/develop 32617abc2 -> 0749d6473


MYNEWT-712 Syscfg: Fix float_user to have syscfg

- Fix float_user to have a syscfg setting


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/0749d647
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/0749d647
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/0749d647

Branch: refs/heads/develop
Commit: 0749d64738b55c19aec17e64a44073f1de5f5cdc
Parents: 32617ab
Author: Vipul Rahane <vi...@apache.org>
Authored: Thu Apr 6 15:32:40 2017 -0700
Committer: Vipul Rahane <vi...@apache.org>
Committed: Thu Apr 6 15:42:10 2017 -0700

----------------------------------------------------------------------
 encoding/cborattr/pkg.yml | 2 +-
 encoding/json/pkg.yml     | 2 +-
 encoding/tinycbor/pkg.yml | 2 +-
 kernel/os/syscfg.yml      | 3 +++
 4 files changed, 6 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/0749d647/encoding/cborattr/pkg.yml
----------------------------------------------------------------------
diff --git a/encoding/cborattr/pkg.yml b/encoding/cborattr/pkg.yml
index 01f5982..c43c29d 100644
--- a/encoding/cborattr/pkg.yml
+++ b/encoding/cborattr/pkg.yml
@@ -26,4 +26,4 @@ pkg.keywords:
 pkg.deps:
     - "encoding/tinycbor"
 
-pkg.cflags.float_user: -DFLOAT_SUPPORT
+pkg.cflags.FLOAT_USER: -DFLOAT_SUPPORT

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/0749d647/encoding/json/pkg.yml
----------------------------------------------------------------------
diff --git a/encoding/json/pkg.yml b/encoding/json/pkg.yml
index dcf6129..7c53ebe 100644
--- a/encoding/json/pkg.yml
+++ b/encoding/json/pkg.yml
@@ -23,4 +23,4 @@ pkg.author: "Apache Mynewt <de...@mynewt.incubator.apache.org>"
 pkg.homepage: "http://mynewt.apache.org/"
 pkg.keywords:
 
-pkg.cflags.float_user: -DFLOAT_SUPPORT
+pkg.cflags.FLOAT_USER: -DFLOAT_SUPPORT

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/0749d647/encoding/tinycbor/pkg.yml
----------------------------------------------------------------------
diff --git a/encoding/tinycbor/pkg.yml b/encoding/tinycbor/pkg.yml
index b5e57b0..315f926 100644
--- a/encoding/tinycbor/pkg.yml
+++ b/encoding/tinycbor/pkg.yml
@@ -26,4 +26,4 @@ pkg.keywords:
 pkg.cflags:
     - -DWITHOUT_OPEN_MEMSTREAM
     - "-I@apache-mynewt-core/encoding/tinycbor/include/tinycbor"
-pkg.cflags.float_user: -DFLOAT_SUPPORT
+pkg.cflags.FLOAT_USER: -DFLOAT_SUPPORT

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/0749d647/kernel/os/syscfg.yml
----------------------------------------------------------------------
diff --git a/kernel/os/syscfg.yml b/kernel/os/syscfg.yml
index b5d9128..66eae3f 100644
--- a/kernel/os/syscfg.yml
+++ b/kernel/os/syscfg.yml
@@ -78,3 +78,6 @@ syscfg.defs:
     MSYS_5_BLOCK_SIZE:
         description: '5th system pool of mbufs; size of an entry'
         value: 0
+    FLOAT_USER:
+        descriptiong: 'Enable float support for users'
+        value: 0