Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
230 views
in Technique[技术] by (71.8m points)

ios - Xcode 10 not being able to archive project

I'm trying to upload a new version of an app that is already in the AppStore. Previous version was uploaded using Xcode 9.4. But now Xcode 10 will be required in order to get approval.

Sadly, Xcode is not being able to archive the project, so I'm getting stuck on the first step, not even being able to generate the binary for submission.

There is no error: According to Xcode, our archiving process has more than 2000 tasks, and is just gets stuck in arbitrary task (always the same). Xcode does not crash, does not show an error and does not complain. It just can't pass that task and the IDE stays there for ever.

We tried it in different machines and also tried two versions: the previous version of the app (that can be archived with Xcode 9.4) and a new version, successfully migrated to Swift 4.2.

UPDATE:

  • Legacy building system does not work either.
  • Build for a Generic iOS Device also get stuck (not just archiving), but the software compiles and works on the simulator.
  • Tried to compile the non-migrated version selecting Swift 4 (instead of 4.2) and same results.
  • Played with optimization levels, whole vs. incremental compilation, etc., and always the same results.
  • In Xcode 9.4 it builds for Generic iOS Device nicely without changing anything.
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Finally, I removed "armv7" from "Valid Architectures" of project build settings. It archived! This means iPhone 4S is not compatible anymore. But, I don't think Apple will deprecate 4S in this way. By diving into the logs, I found that it stucks in creating dSYM symbols.

[17:15:49]: ? Generating 'ZUS_INHOUSE_DEV.app.dSYM'
[17:16:15]: ?
[17:16:15]: ? (arm64)  could not find object file symbol for symbol _lum_convert
[17:16:15]: ? (arm64)  could not find object file symbol for symbol _ff_init_desc_hscale
[17:16:15]: ? (arm64)  could not find object file symbol for symbol _lum_h_scale
[17:16:15]: ? (arm64)  could not find object file symbol for symbol _ff_init_desc_cfmt_convert
[17:16:15]: ?
[17:16:15]: ? (arm64)  could not find object file symbol for symbol _ff_init_desc_chscale
[17:16:15]: ? (arm64)  could not find object file symbol for symbol _chr_h_scale
[17:16:15]: ? (arm64)  could not find object file symbol for symbol _ff_init_desc_no_chr
[17:16:15]: ? (arm64)  could not find object file symbol for symbol _no_chr_scale
[17:16:30]: ? (arm64)  could not find object file symbol for symbol _vlc_entry__audio_filter_libscaletempo_pitch
[17:16:30]: ?
[17:16:30]: ?
[17:16:30]: ?
[17:16:30]: ?
[17:16:30]: ?
[17:16:30]: ?
[17:16:30]: ? (arm64)  failed to insert symbol '_best_overlap_offset_float' in the debug map.

Thus, I guess, another workaround is change "Debug Infomation Format" from "DWARF with dSYM File" to "DWARF".


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...