Created
March 23, 2015 11:18
-
-
Save matthijskooijman/f5e87f36f1d98a55cd44 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
matthijs@grubby:~$ avr-gcc -x c -c foo.cpp | |
matthijs@grubby:~$ avr-gcc -c foo.cpp | |
foo.cpp:1:7: error: ‘__flash’ does not name a type | |
const __flash int array[] = { 3, 5, 7, 11, 13, 17, 19 }; | |
^ | |
matthijs@grubby:~$ cat foo.cpp | |
const __flash int array[] = { 3, 5, 7, 11, 13, 17, 19 }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment