2

我正在尝试制作一个小 bash 脚本,用于在 itunes 上自动上传 ipa。[从 Xcode 上传它工作正常]。

对于命令:

gym

来自 Fastlane,一些项目上传正常,其他项目失败并显示日志:

The following build commands failed:    
GenerateDSYMFile [...] 
    Exit status: 65

在健身房日志中:

GenerateDSYMFile [...] 
dsymutil(20223,0x7fff724c3000) malloc: *** error for object 0x610000100000: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil failed with exit code 6 

...尝试了所有谷歌解决方案....

4

1 回答 1

0

我有同样的问题。

我在这个线程中找到了参考,也在这里

暗示它是MallocNanoZone环境变量。更改后(在终端上):

导出 MallocNanoZone=0

构建成功完成。

于 2016-05-18T13:10:08.377 回答