You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by st...@apache.org on 2016/10/18 19:13:47 UTC

incubator-mynewt-core git commit: add C++ support to mynewt core

Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/develop 3c8b7f436 -> e238713aa


add C++ support to mynewt core


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/e238713a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/e238713a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/e238713a

Branch: refs/heads/develop
Commit: e238713aa098f6a4b2176ccf57e949d8df4f6a0a
Parents: 3c8b7f4
Author: Sterling Hughes <st...@apache.org>
Authored: Tue Oct 18 12:13:38 2016 -0700
Committer: Sterling Hughes <st...@apache.org>
Committed: Tue Oct 18 12:13:38 2016 -0700

----------------------------------------------------------------------
 compiler/arm-none-eabi-m0/compiler.yml | 1 +
 compiler/arm-none-eabi-m4/compiler.yml | 1 +
 compiler/sim/compiler.yml              | 1 +
 3 files changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/e238713a/compiler/arm-none-eabi-m0/compiler.yml
----------------------------------------------------------------------
diff --git a/compiler/arm-none-eabi-m0/compiler.yml b/compiler/arm-none-eabi-m0/compiler.yml
index 4496efb..318a2ac 100644
--- a/compiler/arm-none-eabi-m0/compiler.yml
+++ b/compiler/arm-none-eabi-m0/compiler.yml
@@ -18,6 +18,7 @@
 #
 
 compiler.path.cc: arm-none-eabi-gcc
+compiler.path.cpp: arm-none-eabi-g++
 compiler.path.archive: arm-none-eabi-ar
 compiler.path.as: arm-none-eabi-gcc -x assembler-with-cpp
 compiler.path.objdump: arm-none-eabi-objdump

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/e238713a/compiler/arm-none-eabi-m4/compiler.yml
----------------------------------------------------------------------
diff --git a/compiler/arm-none-eabi-m4/compiler.yml b/compiler/arm-none-eabi-m4/compiler.yml
index 2f87c29..9fa5aab 100644
--- a/compiler/arm-none-eabi-m4/compiler.yml
+++ b/compiler/arm-none-eabi-m4/compiler.yml
@@ -18,6 +18,7 @@
 #
 
 compiler.path.cc: arm-none-eabi-gcc
+compiler.path.cpp: arm-none-eabi-g++ -x c++
 compiler.path.archive: arm-none-eabi-ar
 compiler.path.as: arm-none-eabi-gcc -x assembler-with-cpp
 compiler.path.objdump: arm-none-eabi-objdump

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/e238713a/compiler/sim/compiler.yml
----------------------------------------------------------------------
diff --git a/compiler/sim/compiler.yml b/compiler/sim/compiler.yml
index 225a4e9..465f575 100644
--- a/compiler/sim/compiler.yml
+++ b/compiler/sim/compiler.yml
@@ -19,6 +19,7 @@
 
 # Default.
 compiler.path.cc: "gcc"
+compiler.path.cc: "g++"
 compiler.path.as: "gcc -x assembler-with-cpp"
 compiler.path.archive: "ar"
 compiler.path.objdump: "objdump"