[Lldb-commits] [PATCH] D66448: Include "windows" Instead of "Windows"

Gwen Mittertreiner via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 19 15:19:55 PDT 2019


gmittert created this revision.
gmittert added reviewers: xiaobai, JDevlieghere, labath, asmith.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.

The actual include directory is `lldb/Host/windows` not
`lldb/Host/Windows` which breaks on case sensitive file systems


Repository:
  rLLDB LLDB

https://reviews.llvm.org/D66448

Files:
  source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.cpp
  source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_WoW64.cpp
  source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_i386.cpp
  source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_x86_64.cpp
  source/Plugins/Process/Windows/Common/NativeThreadWindows.cpp


Index: source/Plugins/Process/Windows/Common/NativeThreadWindows.cpp
===================================================================
--- source/Plugins/Process/Windows/Common/NativeThreadWindows.cpp
+++ source/Plugins/Process/Windows/Common/NativeThreadWindows.cpp
@@ -10,7 +10,7 @@
 #include "NativeProcessWindows.h"
 
 #include "lldb/Host/HostThread.h"
-#include "lldb/Host/Windows/HostThreadWindows.h"
+#include "lldb/Host/windows/HostThreadWindows.h"
 #include "lldb/Host/windows/windows.h"
 #include "lldb/Target/Process.h"
 #include "lldb/Utility/Log.h"
Index: source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_x86_64.cpp
===================================================================
--- source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_x86_64.cpp
+++ source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_x86_64.cpp
@@ -16,7 +16,7 @@
 #include "ProcessWindowsLog.h"
 #include "lldb/Host/HostInfo.h"
 #include "lldb/Host/HostThread.h"
-#include "lldb/Host/Windows/HostThreadWindows.h"
+#include "lldb/Host/windows/HostThreadWindows.h"
 #include "lldb/Host/windows/windows.h"
 
 #include "lldb/Utility/Log.h"
Index: source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_i386.cpp
===================================================================
--- source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_i386.cpp
+++ source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_i386.cpp
@@ -15,7 +15,7 @@
 #include "ProcessWindowsLog.h"
 #include "lldb/Host/HostInfo.h"
 #include "lldb/Host/HostThread.h"
-#include "lldb/Host/Windows/HostThreadWindows.h"
+#include "lldb/Host/windows/HostThreadWindows.h"
 #include "lldb/Host/windows/windows.h"
 
 #include "lldb/Utility/Log.h"
Index: source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_WoW64.cpp
===================================================================
--- source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_WoW64.cpp
+++ source/Plugins/Process/Windows/Common/NativeRegisterContextWindows_WoW64.cpp
@@ -15,7 +15,7 @@
 #include "ProcessWindowsLog.h"
 #include "lldb/Host/HostInfo.h"
 #include "lldb/Host/HostThread.h"
-#include "lldb/Host/Windows/HostThreadWindows.h"
+#include "lldb/Host/windows/HostThreadWindows.h"
 #include "lldb/Host/windows/windows.h"
 
 #include "lldb/Utility/Log.h"
Index: source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.cpp
===================================================================
--- source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.cpp
+++ source/Plugins/Process/Windows/Common/NativeRegisterContextWindows.cpp
@@ -7,7 +7,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "lldb/Host/HostThread.h"
-#include "lldb/Host/Windows/HostThreadWindows.h"
+#include "lldb/Host/windows/HostThreadWindows.h"
 #include "lldb/Host/windows/windows.h"
 #include "lldb/Utility/Log.h"
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66448.216003.patch
Type: text/x-patch
Size: 2983 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190819/b6e6fa44/attachment.bin>


More information about the lldb-commits mailing list