diff options
author | Hafiz Abid Qadeer <hafiz_abid@mentor.com> | 2015-02-11 10:14:13 +0000 |
---|---|---|
committer | Hafiz Abid Qadeer <hafiz_abid@mentor.com> | 2015-02-11 10:14:13 +0000 |
commit | c4d5ed06cde28a4c209385a2513e338673834c80 (patch) | |
tree | ca039dda02ac679ec5937a47c258e6be67413f23 /lldb/source/Utility/UriParser.cpp | |
parent | f14735937626fcda45254aae4699acb8d0b89b31 (diff) | |
download | bcm5719-llvm-c4d5ed06cde28a4c209385a2513e338673834c80.tar.gz bcm5719-llvm-c4d5ed06cde28a4c209385a2513e338673834c80.zip |
Fix Mingw build.
Following changes are done.
Add missing headers.
Replace _snprintf with snprintf. It is already changed to _snprintf for MSVC.
Add a file in the build for autoconf.
Call DynamicLoaderWindows::Terminate and DynamicLoaderWindows::Initialize only for MSVC build.
Reviewed in http://reviews.llvm.org/D7536.
llvm-svn: 228822
Diffstat (limited to 'lldb/source/Utility/UriParser.cpp')
-rw-r--r-- | lldb/source/Utility/UriParser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Utility/UriParser.cpp b/lldb/source/Utility/UriParser.cpp index 1d4402feec6..86020d17fc3 100644 --- a/lldb/source/Utility/UriParser.cpp +++ b/lldb/source/Utility/UriParser.cpp @@ -11,6 +11,7 @@ // C Includes #include <stdlib.h> +#include <stdio.h> // C++ Includes // Other libraries and framework includes |