-
Notifications
You must be signed in to change notification settings - Fork 72
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
SD library does not link #7
Comments
The issue is that while you have added utility to the include path, no c files from that subdirectory are being compiled. Change the LCPP_FILES definition to this
A better solution would be to make LC_FILES recurse directories, but there isn't an easy way to do that without using |
Ah yes, of course. Thanks!
Says the person that has the words "What is Win Dose?" in their makefile and put compiled binaries into their git repository ;) |
Touche. You just gave me a good laugh. It's been so long since I looked at
|
You point is valid though. Detecting windows and removing the binaries is more easily fixable. Recursing might be harder. |
To be fair, I doubt a Windows user would hardly appreciate us removing all
|
:) Jokes aside it might be nice to point at the default Arduino location on Windows like on OSX. I'll send a pull-request with these minor fixes anyway. The Hopefully this means I can leave the Arduino IDE closed for another few months until I try the next Arduino compatible board. |
How many of the included arduino libraries use sub directories? My guess is //*.c basically. Should cover any/all libraries. I can't imagine any use more than one
|
Hmm yeah, I want to get rid of the binaries, they don't work on my (32-bit) Ubuntu either. It might actually be worth clearing the history of them because it really slows down git. You'd have to do that though (delete repo, create new one with the same name and then |
Even when modified to include the utility dir. See https://github.com/kasbah/teensy-template/commits/master
The text was updated successfully, but these errors were encountered: