-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Experimental fix for issue #29 #30
Conversation
@@ -62,7 +62,7 @@ def __init__(self, target, options=None, notify=None, tool_path=""): | |||
self.asm = [join(tool_path, "arm-none-eabi-as")] + self.cpu | |||
|
|||
self.cc = [join(tool_path, "arm-none-eabi-gcc"), "-std=gnu99"] + common_flags | |||
self.cppc =[join(tool_path, "arm-none-eabi-g++"), "-std=gnu++98"] + common_flags | |||
self.cppc =[join(tool_path, "arm-none-eabi-g++"), "-std=gnu++11"] + common_flags |
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.
Hi Peter,
Could you please explain why you neeed to switch to C++11? What part(s) of the code need this?
Thanks,
Bogdan
I too bumped up my GNU ARM compiler to gnu++11 to get this line to compile: In the past I have just removed this line from the header but recently I just switched my makefiles to use gnu++11 instead rather than requiring yet another modification to the sources in this repository. I have already made enough of those :) |
I understand now, thank you. I'd rather remove that line than switching to C++11 for two main reasons:
Thanks, |
Experimental fix for issue #29
Update GCC toolchain to support the new format for the first line of …
BLE: Add Gap privacy interfaces.
sd-driver repository clean-up to follow common mbed-os component organisation
Add NUCLEO_L476RG bootloader support config
* GPIO port * fixed hw_types * delete TODO * remove ARCM_BASE * fixed naming issue * possible fixed for LED3 * working GPIO * GPIO is working * add function for gpio_is_connected * fixed PinMode bug
Fix macros for compatibility with mbed classic
Remove section on 'Porting your BLE app from mbed Classic to mbed OS'
Experimental fix for Issue #29 "Network is not supported by GCC_ARM toolchain"
This adds the required RAM segment, the gnu++11 compiler flag (and a minor change to "libraries/tests/mbed/env/test_env.cpp" not to break compilation).
Network tests (Test 77...) are confirmed to work on original MBED device.