终端MacOS Fastlane / Gym / xcodebuild错误65:GenerateDSYMFile,dsymutil malloc:被释放的指针未被分配

时间:2016-02-19 13:49:40

标签: fastlane dsymutil

我正在尝试制作一个小的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 

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

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。

我在this thread以及here

中找到了引用

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

  

export MallocNanoZone = 0

构建成功完成。