gpt4 book ai didi

ios - 无法在 Xcode 4.3.2 中构建,因为退出代码 254 导致 clang 失败

转载 作者:行者123 更新时间:2023-12-01 19:21:31 25 4
gpt4 key购买 nike

我突然开始在 LLVM 3.1 编译器中遇到以下错误。请帮助您了解如何调试它。请让我知道我是否应该为此发布更多信息。

命令/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang 失败,退出代码为 254

最佳答案

在搞砸了一些字符串处理后,我最终得到了同样的错误:
splinter 的:

// 7.30.12 Unspaced/Original - remove windows \r, replace with " " (space) - let textbox wrap
// [mutTempString setstring: [mutTempString stringByReplacingOccurrencesOfString:@"\r" withString:" "]];
// 7.30.12 - Need some 'padding' at the top of the textbox (I copied and pasted above and generated the !code 254 error)
[mutTempString setString:[NSString stringWithFormat:@"\n\n%@", [mutTempString setString:[mutTempString stringByReplacingOccurrencesOfString:@"\r" withString:" "]]]];

我摆脱了 'nested' 或 'deep-inline' [mutable setstring...] 一切都恢复正常了:
固定的:
// 7.30.12 - Need some 'padding' at the top of the textbox (remove the 'inside' setstring)
[mutTempString setString:[NSString stringWithFormat:@"\n\n%@", [mutTempString stringByReplacingOccurrencesOfString:@"\r" withString:" "]]];

关于ios - 无法在 Xcode 4.3.2 中构建,因为退出代码 254 导致 clang 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10201404/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com