Use "-i" option with make when ignoring errors.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51070 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-05-13 21:28:02 +00:00
Родитель 3b8d116703
Коммит 8912b5427a
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -497,6 +497,7 @@ sub RunBuildCommand {
elsif ($IgnoreErrors) {
if ($Cmd eq "make" or $Cmd eq "gmake") {
AddIfNotPresent($Args,"-k");
AddIfNotPresent($Args,"-i");
}
elsif ($Cmd eq "xcodebuild") {
AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES");