LLVM Bugzilla is read-only and represents the historical archive of all LLVM issues filled before November 26, 2021. Use github to submit LLVM bugs

Bug 22667 - Case sensitive path compare on Windows breaks breakpoints
Summary: Case sensitive path compare on Windows breaks breakpoints
Status: NEW
Alias: None
Product: lldb
Classification: Unclassified
Component: All Bugs (show other bugs)
Version: unspecified
Hardware: PC Windows NT
: P normal
Assignee: Zachary Turner
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-02-23 14:52 PST by Carlo Kok
Modified: 2016-01-18 01:44 PST (History)
2 users (show)

See Also:
Fixed By Commit(s):


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Carlo Kok 2015-02-23 14:52:46 PST
LLDB does a case sensitive compare of the full path when setting breakpoints. This is fine on Unix but on Windows it causes issues.

Steps:
- Compile with clang in say c:\projects\file.cpp
- Debug, set a breakpoint on C:\Projects\File.cpp

Breakpoint won't get hit.