-
-
Notifications
You must be signed in to change notification settings - Fork 7k
OSX 10.10.1 using Arduino 1.6.6: build failure message is wrong? #4079
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
Comments
I've just cloned your repo https://github.com/MarginallyClever/Makelangelo-firmware and this other repo https://github.com/i-make-robots/Stewart-Platform-Crane. Then moved |
Makelangelo firmware was already fixed when I reported the error. Add the keyword "static" to any method in the firmware and try to recompile.
|
Ok, arduino-builder omits |
This issue was moved to arduino/arduino-builder#47 |
Fixed in latest hourly build http://www.arduino.cc/en/Main/Software#hourly |
The instructions I give on my website tell people to move the libraries to Thanks, On Fri, Nov 6, 2015 at 3:14 AM, Federico Fissore [email protected]
Dan Royer :: Marginally Clever http://www.marginallyclevergroup.com/ :: |
Makelangelo-firmware/firmware_ams/firmware_ams.ino: In function 'void adjustSpoolDiameter(float)': firmware_ams:226: error: 'void adjustSpoolDiameter(float)' was declared 'extern' and later 'static' [-fpermissive] static void adjustSpoolDiameter(float diameter1) { ^ firmware_ams:226: error: previous declaration of 'void adjustSpoolDiameter(float)' [-fpermissive] static void adjustSpoolDiameter(float diameter1) { ^ exit status 1 'void adjustSpoolDiameter(float)' was declared 'extern' and later 'static' [-fpermissive]
The keyword 'extern' does not appear in my code anywhere. Instead I removed the keyword 'static' and Arduino was able to finish compiling. This code was compiling fine on 1.6.4.
The text was updated successfully, but these errors were encountered: