index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Support
/
Windows
/
Program.inc
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove more name space pollution from .inc files
Kristof Beyls
2017-03-31
1
-1
/
+0
*
[Clang/Support/Windows/Unix] Command lines created by clang may exceed the co...
Oleg Ranevskyy
2016-01-05
1
-4
/
+5
*
Add Windows error code and tidy formatting for system errors.
Paul Robinson
2015-11-23
1
-3
/
+3
*
Windows: Fixed sys::findProgramByName to work with files containing dot in th...
George Rimar
2015-10-08
1
-2
/
+9
*
Add .exe check to Execute to fix clang-modernize tests broken in r247358
Reid Kleckner
2015-09-10
1
-0
/
+8
*
Don't use std::errc.
Rafael Espindola
2015-06-13
1
-1
/
+2
*
Revert r235177 as the Handle is used to fail GetExitCodeProcess on purpose.
Yaron Keren
2015-04-17
1
-1
/
+3
*
Eliminate superfluous CloseHandle(PI.ProcessHandle).
Yaron Keren
2015-04-17
1
-1
/
+0
*
[cleanup] Re-sort all the #include lines in LLVM using
Chandler Carruth
2015-01-14
1
-1
/
+1
*
Fix several bugs in r221220's new program finding code.
Chandler Carruth
2014-12-02
1
-1
/
+2
*
More long path name support on Windows, this time in program execution.
Paul Robinson
2014-11-24
1
-5
/
+10
*
Avoid usage of char16_t as MSVC "14" doesn't appear to support it
Reid Kleckner
2014-11-13
1
-4
/
+4
*
Remove FindProgramByName. NFC.
Rafael Espindola
2014-11-04
1
-39
/
+0
*
Fix Visual C++ warning, Program.inc(85): warning C4018: '<' : signed/unsigned...
Yaron Keren
2014-11-04
1
-1
/
+1
*
sys::findProgramByName(): [Win32] Tweak to pass lowercase .exe to SearchPath(...
NAKAMURA Takumi
2014-11-04
1
-0
/
+1
*
[Support][Program] Add findProgramByName(Name, OptionalPaths)
Michael J. Spencer
2014-11-04
1
-0
/
+64
*
clang-format of ChangeStdinToBinary & ChangeStdoutToBinary.
Yaron Keren
2014-09-26
1
-4
/
+4
*
Add writeFileWithSystemEncoding to LibLLVMSuppor.
Rafael Espindola
2014-09-03
1
-0
/
+46
*
Refactor argument serialization logic when executing process. NFC.
Rafael Espindola
2014-08-25
1
-13
/
+17
*
Remove 'using std::errro_code' from lib.
Rafael Espindola
2014-06-13
1
-10
/
+9
*
Don't use 'using std::error_code' in include/llvm.
Rafael Espindola
2014-06-12
1
-0
/
+1
*
Prefix generic_category with std::.
Rafael Espindola
2014-06-12
1
-2
/
+2
*
Fix windows build.
Rafael Espindola
2014-05-31
1
-2
/
+2
*
Replace OwningPtr<T> with std::unique_ptr<T>.
Ahmed Charles
2014-03-06
1
-2
/
+1
*
Delete dead code.
Rafael Espindola
2014-02-24
1
-7
/
+0
*
Rename Windows.h to WindowsSupport.h to avoid ambiguity
Reid Kleckner
2014-02-12
1
-1
/
+1
*
Fix initialization order warning in mingw32 build
Alp Toker
2013-10-18
1
-1
/
+1
*
Windows: Be more explicit with Win32 APIs
David Majnemer
2013-10-07
1
-1
/
+1
*
Revert "Revert "Windows: Add support for unicode command lines""
David Majnemer
2013-10-07
1
-54
/
+72
*
Revert "Windows: Add support for unicode command lines"
David Majnemer
2013-10-06
1
-72
/
+54
*
Windows: Add support for unicode command lines
David Majnemer
2013-10-06
1
-54
/
+72
*
Add non-blocking Wait() for launched processes
Tareq A. Siraj
2013-10-01
1
-61
/
+52
*
Avoid using alloca in Windows/Program.inc
Reid Kleckner
2013-08-07
1
-13
/
+15
*
Replace use of PathV1.h in Program.cpp.
Rafael Espindola
2013-06-14
1
-16
/
+16
*
Remove unused argument.
Rafael Espindola
2013-06-14
1
-3
/
+3
*
Have sys::FindProgramByName return a std::string.
Rafael Espindola
2013-06-13
1
-8
/
+8
*
[Support] Fix handle and memory leak for processes that are not waited for
Reid Kleckner
2013-06-13
1
-28
/
+18
*
[Win] Put ChangeStdinToBinary ChangeStdoutToBinary ChangeStderrToBinary in sys.
Rafael Espindola
2013-06-12
1
-3
/
+3
*
s/Void/void.
Rafael Espindola
2013-06-12
1
-1
/
+1
*
Attempt at fixing the windows build.
Rafael Espindola
2013-06-12
1
-34
/
+35
*
Fixes a buffer overrun where the allocated buffer wasn't large enough to acco...
Aaron Ballman
2013-05-01
1
-1
/
+8
*
[Support] Fix argv string escape bug on Windows
Reid Kleckner
2013-04-22
1
-4
/
+42
*
Add a function to check if an argument list is too long.
Rafael Espindola
2013-04-11
1
-0
/
+16
*
Remove an unused method on Program.
Chandler Carruth
2012-12-31
1
-17
/
+0
*
Remove an unused method on the Program class.
Chandler Carruth
2012-12-31
1
-5
/
+0
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-2
/
+2
*
Support/Program: Make Change<stream>ToBinary return error_code.
Michael J. Spencer
2011-12-13
1
-6
/
+12
*
Support/Windows: Cleanup scoped handles.
Michael J. Spencer
2011-12-12
1
-3
/
+3
*
[Win32] Catch exceptions (eg. segfault) on waiting for invoked clang from the...
NAKAMURA Takumi
2011-11-29
1
-1
/
+11
*
Return only the least significant 8 bits of the exit status from
Peter Collingbourne
2011-11-06
1
-1
/
+1
[next]