2010-10-20 46 views
2

我想知道是否可以在XCode中打開外部生成日誌(例如,一個簡單的生成腳本的結果)來處理錯誤和警告?換句話說:XCode是否可以用作編輯器並仍然處理外部構建日誌?如何在XCode中使用外部生成日誌

回答

1

我可以建議這種方法,因爲我的類似目標的工作: 在「構建階段」在Xcode中添加「運行腳本」行動:

TAGS="TODO:|FIXME:|WARNING" 
find "${SRCROOT}" \(-name "*.h" -or -name "*.m" -or -name "*.swift" \) -print0 | xargs -0 egrep --with-filename --line-number --only-matching "($TAGS).*\$" | perl -p -e "s/($TAGS)/ warning: \$1/" 

enter image description here

這神奇增加了警告,生成日誌

enter image description here

我希望,你可以調整這個腳本爲您的需求。

相關問題