-
Notifications
You must be signed in to change notification settings - Fork 7.4k
C++ usage #1205
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
Labels
Comments
This happens with |
|
nagineni
pushed a commit
to nagineni/zephyr
that referenced
this issue
Nov 20, 2017
…rtos#1464) We are not currently checking if the file exists when calling FS.statSync() to create the Stats object, in which case if the file doesn't exists, we should return a undefined value, and the unit tests should also check if the value is undefined. Added a ToDo to properly fix this with adding a FS.exist() api that can be used to check if the file exists, and then return a valid FSStat object when the file is invalid according the NodeJS spec. Also updated tests and API doc to reflect new change. Fixes zephyrproject-rtos#1205 Signed-off-by: Jimmy Huang <[email protected]>
This is an issue for me too, i have to use -fpermissive, with that it works, but... it's permissive :) |
8 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
my config includes the
CONFIG_CPLUSPLUS=y
the target is the nrf52 dk dev boad.How do I get around this? Specifiying
-fpermissive
does not solve my issue. I tried to include all C includes inextern "C"
but no success.CONFIG_COMPILER_OPT="-fpermissive"
does not help eitherThe text was updated successfully, but these errors were encountered: