We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Code appears to compile correctly with the Arduino CLI compiler but not with the arduino_ci compiler. See https://gcc.gnu.org/onlinedocs/gcc-4.7.2/gcc/Function-Attributes.html.
arduino_ci
Changing cpp_library.rb:497 from -std=c++0x to -std=c++11 solves this problem. See Arduino-CI/arduino_ci#146.
cpp_library.rb:497
-std=c++0x
-std=c++11
Furthermore, this is only a warning and if there are no errors then it is silently ignored so we can proceed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Code appears to compile correctly with the Arduino CLI compiler but not with the
arduino_ci
compiler. See https://gcc.gnu.org/onlinedocs/gcc-4.7.2/gcc/Function-Attributes.html.Changing
cpp_library.rb:497
from-std=c++0x
to-std=c++11
solves this problem. See Arduino-CI/arduino_ci#146.Furthermore, this is only a warning and if there are no errors then it is silently ignored so we can proceed.
The text was updated successfully, but these errors were encountered: