I've had some success with this workflow:
1. Using Unity's internal build method (BuildPipeLine.BuildPlayerInternal) to circumvent the "no append builds on windows" limitation :) This way, the ids inside the project.pbxproj stay the same, yay.
2. Sync this folder with another folder used for the real iOS build except (!) project.pbxproj
3. Using winmerge manually sync the changes inside project.pbxproj, skip the duplicate/clashing entries inside following nodes: buildSettings, HEADER_SEARCH_PATHS, OTHER_LDFLAGS.
4. Finally rebuild without recompilation
So besides force-enabling "append" builds the main blocker seem to be those duplicate entries. There seem to exist two kinds:
1. "Append"-related duplicates: Unity incorrectly adds entries already present _per build_. In my case:
```
HEADER_SEARCH_PATHS = (
"$(SRCROOT)/Libraries",
"$(SRCROOT)/Libraries",
"$(SRCROOT)/Libraries",
```
and
```
OTHER_LDFLAGS = (
"-lc++",
"-lc++",
"-lc++",
```
Those can easily be remedied with a post-build-check I guess.
2. Clashing flags:
```
buildSettings = {
[...]
ENABLE_BITCODE = YES;
ENABLE_BITCODE = NO;
```
I wonder what the outcome is in this case. Educated guess: NO gets used because it happens to be last?
But I don't know where they even came from and now I can't even reproduce them anymore. They disappeared when disabling/restoring your `-strip bitcode`
argument. But as said, I can't reproduce it. Maybe you have some clue about it. (I'm still using version 3.53 btw!)