Open
Conversation
pridolfi
reviewed
Oct 16, 2016
| @@ -1,6 +1,10 @@ | |||
| # Copyright 2016, Pablo Ridolfi | |||
Owner
There was a problem hiding this comment.
put your copyright here like this:
Copyright 2016, Iván Castellucci Vidal ivanc.vidal@gmail.com
pridolfi
reviewed
Oct 16, 2016
| # | ||
| # Changes: | ||
| # 2016-10-16: Iván Castellucci Vidal <ivanc.vidal@gmail.com> | ||
| # Added support for C++ projects. |
Owner
There was a problem hiding this comment.
this should go in a CREDITS file
pridolfi
reviewed
Oct 16, 2016
| if(pausems_count > 0) pausems_count--; | ||
| } | ||
|
|
||
| int main(void) |
Owner
There was a problem hiding this comment.
maybe you can improve this example by adding something in c++, now this example is exactly the same as blinky
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Modified main Makefile to add support for C++ compilation. It has to include sources and make the final linking with a C++ capable compiler (g++).
Modified etc/target/*.mk to include CXXFLAGS.
Modified etc/target/*_lib.ld to include librdimon.a necessary for C++ symbols.
Modified modules/lpc4337_m4/ciaa/inc/*.h to handle both C and C++ projects.
Added an example blinky as a minimal C++ project.
Any C++ project has to use a project Makefile aware of C++ files defining PROJECT_CXX_FILES as done in blinky_cpp