-
Notifications
You must be signed in to change notification settings - Fork 99
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
Size of static libs? #11
Comments
this means a bin wishing to bundle this lib would gain 70-80MB in size-- this is enormous and not likely the product of raw symbols. perhaps these libs have all the debugging symbols in and could be much reduced for production? |
Yes, it is because of the debug symbols. You can always strip them out in the build script if you want. |
This is making the repository large. Maybe you should try Git LFS? |
Yeah, I cloned the repo and realized in total it was about 1GB?!?! ;) Git LFS or release builds for the win. Or remove the binaries from being checked in via git ignore. @serialx To fix it, add this file at the root: .gitignore with contents: Or just exclude the directories you know will always have large files... |
Why are the static libs so large?
The text was updated successfully, but these errors were encountered: