-
Notifications
You must be signed in to change notification settings - Fork 683
Eliminate cpp featureset #876
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Eliminate cpp featureset #876
Conversation
|
||
# Imported libraries | ||
if(("${PLATFORM}" STREQUAL "DARWIN") AND (NOT (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX))) | ||
if(("${PLATFORM}" STREQUAL "DARWIN") AND (NOT (CMAKE_COMPILER_IS_GNUCC))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unnecessary parentheses around CMAKE_COMPILER_IS_GNUCC
Please, also update docs/DEVELOPMENT.md |
Please provide some statistics about code size and performance. |
(The |
@@ -1,4 +1,4 @@ | |||
/* Copyright 2015 Samsung Electronics Co., Ltd. | |||
/* Copyright 2015 Samsung Electronics Co., Ltd. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
accident change, remove space
d7c2c8d
to
5c25075
Compare
Thanks for the comments, I've updated the patch and rebased with master. |
@@ -3,7 +3,7 @@ | |||
Currently, only Ubuntu 14.04+ is officially supported as primary development environment. | |||
|
|||
There are several dependencies, that should be installed manually. The following list is required for building: | |||
- `gcc` or `g++` higher than `4.8.2` | |||
- `gcc` higher than `4.8.2` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need gcc 4.8.2 for a C99 compatible engine?
Nice job! LGTM. I think we could reduce the minimum GCC version, but that is not important at the moment. |
0c76bfe
to
c9a0241
Compare
Use c-style cast instead of reinterpret_cast. Use identifiers for function parameters. Use type cast to avoid conversion error. JerryScript-DCO-1.0-Signed-off-by: Robert Sipka rsipka.uszeged@partner.samsung.com
Move all '.cpp' files to '.c'. Rename comments from 'cpp' to 'c'. JerryScript-DCO-1.0-Signed-off-by: Roland Takacs rtakacs.u-szeged@partner.samsung.com JerryScript-DCO-1.0-Signed-off-by: Robert Sipka rsipka.uszeged@partner.samsung.com
c9a0241
to
977bfa5
Compare
No description provided.