Add C++ support to Makefile, and proof-of-concept simple.cpp example

This is a work in progress based on @mikejac's work.

Missing:
* No 'new' operator.
* I don't think STL is currently supported.
This commit is contained in:
Angus Gratton 2015-08-10 15:51:57 +10:00
parent c5bd46dae0
commit 430d0fbcbc
5 changed files with 92 additions and 3 deletions
examples/simple_cplusplus

View file

@ -0,0 +1,3 @@
# Simple makefile for simple example
PROGRAM=simple
include ../../common.mk