forked from OSchip/llvm-project
Put in a hack for Cygwin that prevents mkdtemp from being used since
configure seems to find it on Cygwin but linking against it fails. llvm-svn: 22189
This commit is contained in:
parent
7c0e9285ce
commit
d1ef1df103
|
@ -47,6 +47,11 @@
|
|||
# endif
|
||||
#endif
|
||||
|
||||
// Put in a hack for Cygwin which falsely reports that the mkdtemp function
|
||||
// is available when it is not.
|
||||
#ifdef __CYGWIN__
|
||||
# undef HAVE_MKDTEMP
|
||||
#endif
|
||||
|
||||
namespace llvm {
|
||||
using namespace sys;
|
||||
|
|
Loading…
Reference in New Issue