Add --cache option to ruby_deploy to cache .rbo files#34
Open
MSch wants to merge 1 commit intoMacRuby:masterfrom
Open
Add --cache option to ruby_deploy to cache .rbo files#34MSch wants to merge 1 commit intoMacRuby:masterfrom
MSch wants to merge 1 commit intoMacRuby:masterfrom
Conversation
comparison always fails)
Member
|
Interesting change. Would it is possible to make this automatic? (and perhaps introduce a --no-cache option to avoid caching). This way, existing projects will build faster without the need to change their Xcode project files. |
Member
|
Seems this pull request is dead. It also will not merge cleanly. I'd rather not throw this away, so if there are no objections, I'll try and get it cleaned up (including turning it on by default) soon. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi,
in ruby_deploy the mtime comparison always fails since Xcode copies the file to the build dir without preserving mtime.
I've written a per-default disabled --cache command line switch that caches the compiled .rbo files (+ SHA1 of the source file) in .rbo-cache, which speeds up ruby_deploy by a huge amount for big projects
If run with --cache ruby_deploy will mirror the directory structure of Contents/Resources in .rbo-cache and save the compiled rbos and the SHA1 of the source files there on a per ARCH basis. The next time ruby_deploy --cache gets invoked it checks to see which rbos it can just copy and which have to be compiled (and then cached)
The mtime checking is kept too.
Currently there's no cache pruning, you just have to remove .rbo-cache from time to time if you add/delete many files, but that can be added.