diff options
author | David Neto <dneto@google.com> | 2016-02-29 01:01:04 -0500 |
---|---|---|
committer | David Neto <dneto@google.com> | 2016-03-16 16:55:32 -0400 |
commit | 7c58c1d59e05d369386eae81e3b95e8cc0a2b53f (patch) | |
tree | 6117581976af9ec80a2e071d0d47b9387b9fe245 /source/print.cpp | |
parent | 6032b98c53f5654d936997d7112ab154c82b5778 (diff) | |
download | SPIRV-Tools-7c58c1d59e05d369386eae81e3b95e8cc0a2b53f.tar.gz SPIRV-Tools-7c58c1d59e05d369386eae81e3b95e8cc0a2b53f.tar.bz2 SPIRV-Tools-7c58c1d59e05d369386eae81e3b95e8cc0a2b53f.zip |
Support Linux-to-Windows cross comiple via MinGW
For MinGW compile, statically link the C++ runtime
Change-Id: Ic58d1e47a814a265fd91edd7082e938ffc87f0c9
Diffstat (limited to 'source/print.cpp')
-rw-r--r-- | source/print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/print.cpp b/source/print.cpp index d157d1db..a354aa9d 100644 --- a/source/print.cpp +++ b/source/print.cpp @@ -43,7 +43,7 @@ clr::blue::operator const char*() { return "\e[34m"; } } // namespace libspirv #elif defined(SPIRV_WINDOWS) -#include <Windows.h> +#include <windows.h> namespace libspirv { |