Genhain
Genhain

Reputation: 1937

Xcode custom shell scripts are slowing down the compiling time

Testing any changes to my Xcode project has become an exercise in patience whenever I build. After all the source files have compiled, I get the following message in the activity window at the top of Xcode:

"Running 3 of 3 Custom Shell Scripts"

I have not added any of my own custom shell scripts but I am using quite a few dependencies via Cocoapods and I am using 2 frameworks for the build environment, Crashlytics and Tapstream. Crashlytics requires you add a run script in the build phases, other than that I don't know where the other ones are coming from and they appear to be the bottleneck in my build time.

Can anyone enlighten me as to what is going on and how i possibly speed it up?

Upvotes: 33

Views: 13407

Answers (8)

Werner Altewischer
Werner Altewischer

Reputation: 10474

To fix the slow "Copy pods resources" problem I figured out a solution to only copy the resources if they haven't been copied before.

For this purpose we have to patch the *-resources.sh files that are created by cocoapods such that the copy procedure only happens if a generated file in the target directory doesn't exist (it is created upon first copy). As long as this target directory exists and includes this autogenerated file, the copy resources phase is skipped. This saves me about 30 seconds in my project (of course depends on your project size). To accomplish this do the following:

Create a patch file called 'copy_pod_resources_once.patch' in your project root dir with the following contents:

5a6,13
> NONCE_FILE="${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/copyresources-done.nonce"
> if [ -f "$NONCE_FILE" ]; then
>    echo "already copied resources"
>    exit 0
> else
>    touch "$NONCE_FILE"
> fi
> 

In the Podfile for your project add the following post install hook:

post_install do |installer_representation|
    system('find "./Pods/Target Support Files" -name "*-resources.sh" | xargs -I{} patch -p0 {} -i ./copy_pod_resources_once.patch')

    <other post install stuff>
end

Upvotes: 19

OdieO
OdieO

Reputation: 7004

I can't enlighten you but I can tell you how I stopped mine from running. This also happened after installing Cocoapods. In my main project's Target, under Build Phases, I noticed two entries entitled Check Pods Manifest.lock and another called Copy Pods Resources.

Under both there was an unchecked option Run script only when installing. I checked both and at least for now my projects build and run fine without running the scripts.

This is kind of a crappy answer because I can't really give you any more information, and it might not even work for your case, so hopefully someone comes along and enlightens us.


POSSIBLE EXTERNAL BUNDLE ISSUES

So I just had a frustrating experience debugging an issue where a pod installed library's NSLocalized strings file weren't working. Turns out it was because I checked the option mentioned above. Pods-resources.sh, which had the lines to install the bundle, wasn't running in debug mode. It was only running when installing - of course! Something to watch out for.

More info in this question:

NSLocalizedStringFromTable not working in CocoaPod dependency

Upvotes: 58

jlew
jlew

Reputation: 10601

I've found that this happens to me frequently. Exact cause unknown, but appears to be switching between git branches that have differences in what pods are being used. In my case simply touching the Pods-xxx-Resources.sh shell script file causes it to speed back up.

Upvotes: 0

user4034301
user4034301

Reputation:

Check your project folder name have any space.Because space creates problem in directory path like "SRCROOT".I removed spaces and project run fine.

Upvotes: 0

www_sq
www_sq

Reputation: 23

For me, it was Crashlytics. There were some outstanding changes, as Crashlytics does auto-updating of its files. I reset/removed them and rebuilt and got past it.

So the general answer may be to check any third party components and make sure they're working properly.

Upvotes: 2

Daniel S
Daniel S

Reputation: 336

I had a similar issue in my project (however not using Cocoapods). It ended up being an issue with an application external to Xcode (Spritebuilder) somehow holding onto a resource within my Xcode project when it crashed. I forced the non-xcode application to close and now the issue is gone

Upvotes: 0

Randika Vishman
Randika Vishman

Reputation: 8134

As Ramsel has said in this answer, https://stackoverflow.com/a/21318086/1752988 I also went to Build Phases and cleared out all the possible links to PODs, after trying most of the other solutions and the three build issues shown regarding Pods were cleared out.

But then one file which was not list under the XCode Project navigator was missing, but they were in the Downloaded Git Zip folder! Obviously, I copied it and put into the XCode project and try running it runs cleanly! :)

Upvotes: 0

ninjaneer
ninjaneer

Reputation: 7031

Probably not going to work for you, but cleaning the project fixed it for me (Product -> Clean)

Upvotes: -1

Related Questions