mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:50:30 +00:00
raw_ostream.cpp: Introduce <fcntl.h> to let O_BINARY provided. Or, llvm::outs() would be set to O_TEXT by default.
llvm/test/Object/check_binary_output.ll is expected to pass on win32. llvm-svn: 186480
This commit is contained in:
parent
ae8b6de415
commit
26b99c6974
@ -27,6 +27,11 @@
|
||||
#include <cerrno>
|
||||
#include <sys/stat.h>
|
||||
|
||||
// <fcntl.h> may provide O_BINARY.
|
||||
#if defined(HAVE_FCNTL_H)
|
||||
# include <fcntl.h>
|
||||
#endif
|
||||
|
||||
#if defined(HAVE_UNISTD_H)
|
||||
# include <unistd.h>
|
||||
#endif
|
||||
|
@ -1,7 +1,4 @@
|
||||
; This is not an assembly file, this is just to run the test.
|
||||
; The test verifies that llvm-ar produces a binary output.
|
||||
|
||||
; FIXME: They malform LF into CRLF. Investigating.
|
||||
; XFAIL: mingw32,win32
|
||||
|
||||
;RUN: llvm-ar p %p/Inputs/GNU.a very_long_bytecode_file_name.bc | cmp -s %p/Inputs/very_long_bytecode_file_name.bc -
|
||||
|
Loading…
Reference in New Issue
Block a user