| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Add an optional 'bool makeAbsolute' in llvm::sys::fs::unique_file function. | Argyrios Kyrtzidis | 2011-07-28 | 1 | -11/+14 | |
| | | | | | | | | If true and 'model' parameter is not an absolute path, a temp directory will be prepended. Make it true by default to match current behaviour. llvm-svn: 136310 | |||||
| * | Windows/DynamicLibrary.inc: Fix trivial warnings. Thanks to John Myers! | NAKAMURA Takumi | 2011-07-09 | 2 | -3/+3 | |
| | | | | | llvm-svn: 134812 | |||||
| * | Have Program::Wait return -2 for crashed and timeouts instead of embedding | Andrew Trick | 2011-05-21 | 1 | -4/+5 | |
| | | | | | | | info in the error message. Per Dan's request. llvm-svn: 131780 | |||||
| * | Typo and missing checkin from r131186. | Andrew Trick | 2011-05-11 | 1 | -1/+2 | |
| | | | | | llvm-svn: 131187 | |||||
| * | Windows/DynamicLibrary.inc: Clean up ELM_Callback. We may check the decl ↵ | NAKAMURA Takumi | 2011-05-01 | 1 | -31/+2 | |
| | | | | | | | | | | instead of the versions of individual libraries. autoconf: Add checking ELM_Callback decl for mingw32 and mingw-w64. cmake/config-ix.cmake: Add checking ELM_Callback decl for win32. llvm-svn: 130657 | |||||
| * | Windows/PathV2.inc: [PR8520] Recognize "NUL" as special (character) file. | NAKAMURA Takumi | 2011-03-16 | 1 | -1/+8 | |
| | | | | | | FIXME: It is a temporal hack. We should detect as many "special file name" as possible. llvm-svn: 127724 | |||||
| * | Windows/Path.inc: [PR6270] PathV1::makeUnique(): Give arbitrary initial seed ↵ | NAKAMURA Takumi | 2011-03-16 | 1 | -1/+11 | |
| | | | | | | | | for workaround. FIXME: We should use sys::fs::unique_file() in future. llvm-svn: 127723 | |||||
| * | Try to fix the windows build. | Rafael Espindola | 2011-03-10 | 1 | -2/+2 | |
| | | | | | llvm-svn: 127416 | |||||
| * | Windows/PathV2.inc: Eliminate redundant condition. DWORD is unsigned. | NAKAMURA Takumi | 2011-03-07 | 1 | -1/+1 | |
| | | | | | llvm-svn: 127140 | |||||
| * | Windows/Windows.h: Redefine _WIN32_WINNT here. mingw-w64 tends to define it ↵ | NAKAMURA Takumi | 2011-02-09 | 1 | -0/+3 | |
| | | | | | | | as 0x0502 in its headers. llvm-svn: 125171 | |||||
| * | Windows/Program.inc: Eliminate the declaration of SetInformationJobObject(). ↵ | NAKAMURA Takumi | 2011-02-09 | 1 | -9/+0 | |
| | | | | | | | It should be provided with _WIN32_WINNT>=0x0500. llvm-svn: 125170 | |||||
| * | Windows/DynamicLibrary.inc: ELM_Callback fix for mingw-w64. | NAKAMURA Takumi | 2011-02-09 | 1 | -1/+11 | |
| | | | | | llvm-svn: 125169 | |||||
| * | Windows/DynamicLibrary.inc: Split explicit symbols into explicit_symbols.inc. | NAKAMURA Takumi | 2011-02-05 | 2 | -60/+83 | |
| | | | | | | | | config.h.* have conditions whether each symbol is defined or not. Autoconf and CMake may check symbols in libgcc.a for JIT on Mingw. llvm-svn: 124950 | |||||
| * | Windows/Program.inc: Quote arguments when dubious characters (used by ↵ | NAKAMURA Takumi | 2011-02-05 | 1 | -1/+1 | |
| | | | | | | | cmd.exe or MSYS shell) are included to invoke CreateProcess(). Thanks to Danil Malyshev. llvm-svn: 124945 | |||||
| * | Make Win32's header file name lower for cross build on case-sensitive ↵ | NAKAMURA Takumi | 2011-02-04 | 3 | -5/+5 | |
| | | | | | | | filesystem. llvm-svn: 124864 | |||||
| * | Windows/PathV2.inc: For CryptAcquireContext(), CRYPT_VERIFYCONTEXT may be ↵ | NAKAMURA Takumi | 2011-01-17 | 1 | -1/+1 | |
| | | | | | | | specified for easy use. llvm-svn: 123687 | |||||
| * | Windows/PathV2.inc: MoveFileEx() can behave like Posix's mv(1) to specify ↵ | NAKAMURA Takumi | 2011-01-17 | 1 | -1/+2 | |
| | | | | | | | MOVEFILE_COPY_ALLOWED | MOVEFILE_REPLACE_EXISTING. llvm-svn: 123686 | |||||
| * | lib/Support/Windows/Signals.inc: "Showstopper" dialogs may be suppressed ↵ | NAKAMURA Takumi | 2011-01-17 | 1 | -0/+3 | |
| | | | | | | | with SetErrorMode() on Windows 7. llvm-svn: 123685 | |||||
| * | Support/PathV2: Implement get_magic. | Michael J. Spencer | 2011-01-15 | 2 | -0/+43 | |
| | | | | | llvm-svn: 123544 | |||||
| * | Support/Path: Deprecate PathV1::isDirectory and replace all uses with ↵ | Michael J. Spencer | 2011-01-11 | 1 | -2/+3 | |
| | | | | | | | PathV2::is_directory. llvm-svn: 123209 | |||||
| * | Support/Path: Deprecate PathV1::exists and replace all uses with ↵ | Michael J. Spencer | 2011-01-10 | 1 | -3/+5 | |
| | | | | | | | PathV2::fs::exists. llvm-svn: 123151 | |||||
| * | Support/Windows/PathV2: Make directory iteration ignore . and .. | Michael J. Spencer | 2011-01-05 | 1 | -4/+24 | |
| | | | | | llvm-svn: 122883 | |||||
| * | Support/Windows/PathV2: Fix remove to handle both files and directories. | Michael J. Spencer | 2011-01-05 | 1 | -7/+21 | |
| | | | | | llvm-svn: 122882 | |||||
| * | Missed some StringRefRefs. | Benjamin Kramer | 2010-12-17 | 1 | -4/+2 | |
| | | | | | llvm-svn: 122077 | |||||
| * | Support/Windows/PathV2: Fix header comment. | Michael J. Spencer | 2010-12-09 | 1 | -1/+1 | |
| | | | | | llvm-svn: 121383 | |||||
| * | Support: Move c_str from SmallVector back to SmallString and add a free standing | Michael J. Spencer | 2010-12-09 | 2 | -1/+14 | |
| | | | | | | | templated c_str in Windows.h to replace it. llvm-svn: 121381 | |||||
| * | Support: Remove Alarm. It is unused (via local grep and google code search). | Michael J. Spencer | 2010-12-07 | 1 | -43/+0 | |
| | | | | | llvm-svn: 121160 | |||||
| * | Support/PathV2: Change most functions in the path namespace to return their work | Michael J. Spencer | 2010-12-07 | 1 | -2/+1 | |
| | | | | | | | via their return value instead of an out parameter. llvm-svn: 121149 | |||||
| * | Support/PathV2: Remove the error_code return type from all functions in the path | Michael J. Spencer | 2010-12-07 | 1 | -2/+2 | |
| | | | | | | | | namespace. None of them return anything except for success anyway. These will be converted to returning their result soon. llvm-svn: 121109 | |||||
| * | Support/PathV2: Move current_path from path to fs and fix the Unix ↵ | Michael J. Spencer | 2010-12-07 | 1 | -5/+1 | |
| | | | | | | | | | implementation. Unix bug spotted by Dan Gohman. llvm-svn: 121090 | |||||
| * | Support/Windows: Make MinGW happy. | Michael J. Spencer | 2010-12-06 | 2 | -7/+7 | |
| | | | | | llvm-svn: 120991 | |||||
| * | Support/FileSystem: Add directory_iterator implementation. | Michael J. Spencer | 2010-12-06 | 2 | -3/+84 | |
| | | | | | llvm-svn: 120989 | |||||
| * | Support/Windows: Add ScopedHandle and move some clients over to it. | Michael J. Spencer | 2010-12-06 | 2 | -10/+50 | |
| | | | | | llvm-svn: 120987 | |||||
| * | Support/PathV2: Remove redundant calls to make_error_code. | Michael J. Spencer | 2010-12-04 | 1 | -49/+48 | |
| | | | | | llvm-svn: 120913 | |||||
| * | Support/FileSystem: Add status implementation. | Michael J. Spencer | 2010-12-04 | 1 | -0/+48 | |
| | | | | | llvm-svn: 120870 | |||||
| * | Support/Windows/FileSystem: Fix MinGW warnings. | Michael J. Spencer | 2010-12-04 | 1 | -6/+6 | |
| | | | | | llvm-svn: 120868 | |||||
| * | Support/FileSystem: Add file_size implementation. | Michael J. Spencer | 2010-12-04 | 1 | -0/+21 | |
| | | | | | llvm-svn: 120867 | |||||
| * | Support/FileSystem: Add equivalent implementation. | Michael J. Spencer | 2010-12-03 | 1 | -0/+65 | |
| | | | | | llvm-svn: 120827 | |||||
| * | Support/FileSystem: Fix MinGW build. It doesn't have _chsize_s. | Michael J. Spencer | 2010-12-03 | 1 | -0/+4 | |
| | | | | | llvm-svn: 120826 | |||||
| * | And I really hate line endings. | Michael J. Spencer | 2010-12-03 | 1 | -3/+3 | |
| | | | | | llvm-svn: 120821 | |||||
| * | Support/Windows/FileSystem: Fix MinGW build. | Michael J. Spencer | 2010-12-03 | 1 | -0/+6 | |
| | | | | | llvm-svn: 120820 | |||||
| * | Support/FileSystem: Add resize_file implementation. | Michael J. Spencer | 2010-12-03 | 1 | -0/+19 | |
| | | | | | llvm-svn: 120819 | |||||
| * | Support/FileSystem: Add rename implementation. | Michael J. Spencer | 2010-12-03 | 1 | -0/+19 | |
| | | | | | llvm-svn: 120818 | |||||
| * | Support/FileSystem: Add remove implementation. | Michael J. Spencer | 2010-12-03 | 1 | -0/+19 | |
| | | | | | llvm-svn: 120817 | |||||
| * | Fix line endings. | Michael J. Spencer | 2010-12-03 | 1 | -6/+6 | |
| | | | | | llvm-svn: 120816 | |||||
| * | Support/FileSystem: Add create_symlink implementation. | Michael J. Spencer | 2010-12-03 | 1 | -0/+32 | |
| | | | | | llvm-svn: 120800 | |||||
| * | Support/FileSystem: Add create_hard_link implementation. | Michael J. Spencer | 2010-12-03 | 1 | -0/+19 | |
| | | | | | llvm-svn: 120792 | |||||
| * | Support/FileSystem: Add create_director{y,ies} implementations. | Michael J. Spencer | 2010-12-03 | 1 | -0/+20 | |
| | | | | | llvm-svn: 120790 | |||||
| * | Support/Windows/FileSystem: Remove unneeded toNullTerminatedStringRef. | Michael J. Spencer | 2010-12-03 | 1 | -2/+2 | |
| | | | | | llvm-svn: 120777 | |||||
| * | Support/FileSystem: Add unique_file and exists implementations. | Michael J. Spencer | 2010-12-03 | 2 | -0/+205 | |
| | | | | | llvm-svn: 120776 | |||||

