Re-application of the Dexter builder removal reversed due to continued
errors on the green dragon LLDB buildbot:
https://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/59716/
Cause of the error is unclear, but it looks as though there is some
unexpected non-determinism in the test failures.
This reverts commit 323270451d.
18 lines
361 B
Batchfile
18 lines
361 B
Batchfile
@setlocal EnableDelayedExpansion
|
|
|
|
for %%I in (%SOURCE_INDEXES%) do (
|
|
%PATHTOCLANGPP% -fuse-ld=lld -c !COMPILER_OPTIONS_%%I! !SOURCE_FILE_%%I! -o !OBJECT_FILE_%%I!
|
|
if errorlevel 1 goto :FAIL
|
|
)
|
|
|
|
%PATHTOCLANGPP% -fuse-ld=lld %LINKER_OPTIONS% %OBJECT_FILES% -o %EXECUTABLE_FILE%
|
|
if errorlevel 1 goto :FAIL
|
|
goto :END
|
|
|
|
:FAIL
|
|
echo FAILED
|
|
exit /B 1
|
|
|
|
:END
|
|
exit /B 0
|