aboutsummaryrefslogtreecommitdiff
path: root/lldb.xcodeproj/project.pbxproj
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2014-08-17 00:10:50 +0000
committerTodd Fiala <todd.fiala@gmail.com>2014-08-17 00:10:50 +0000
commitac46ed5221f13f7c4e09be480382609e52bb621d (patch)
tree6c95538e36d01c6fb1b25421a3c7bcef03c2d273 /lldb.xcodeproj/project.pbxproj
parentf679e0fb00016332981a8a9ec5c73aaa37473079 (diff)
downloadlldb-ac46ed5221f13f7c4e09be480382609e52bb621d.tar.gz
Fix Linux to respect ASLR settings when launching processes to debug locally and remotely.
See the following links for details: http://llvm.org/bugs/show_bug.cgi?id=20658 See http://reviews.llvm.org/D4941 git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@215822 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lldb.xcodeproj/project.pbxproj')
-rw-r--r--lldb.xcodeproj/project.pbxproj20
1 files changed, 20 insertions, 0 deletions
diff --git a/lldb.xcodeproj/project.pbxproj b/lldb.xcodeproj/project.pbxproj
index 7bd184717..97177b8c2 100644
--- a/lldb.xcodeproj/project.pbxproj
+++ b/lldb.xcodeproj/project.pbxproj
@@ -952,6 +952,12 @@
236124A31986B4E2004EFC37 /* Socket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Socket.cpp; sourceTree = "<group>"; };
236124A61986B50E004EFC37 /* IoObject.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IoObject.h; path = include/lldb/Host/IoObject.h; sourceTree = "<group>"; };
236124A71986B50E004EFC37 /* Socket.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Socket.h; path = include/lldb/Host/Socket.h; sourceTree = "<group>"; };
+ 23AB052D199FF639003B8084 /* FreeBSDThread.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = FreeBSDThread.cpp; sourceTree = "<group>"; };
+ 23AB052E199FF639003B8084 /* FreeBSDThread.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FreeBSDThread.h; sourceTree = "<group>"; };
+ 23AB052F199FF639003B8084 /* ProcessFreeBSD.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = ProcessFreeBSD.cpp; sourceTree = "<group>"; };
+ 23AB0530199FF639003B8084 /* ProcessFreeBSD.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProcessFreeBSD.h; sourceTree = "<group>"; };
+ 23AB0531199FF639003B8084 /* ProcessMonitor.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = ProcessMonitor.cpp; sourceTree = "<group>"; };
+ 23AB0532199FF639003B8084 /* ProcessMonitor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProcessMonitor.h; sourceTree = "<group>"; };
23DDF224196C3EE600BB8417 /* CommandOptionValidators.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CommandOptionValidators.cpp; path = source/Interpreter/CommandOptionValidators.cpp; sourceTree = "<group>"; };
23EDE3301926839700F6A132 /* NativeRegisterContext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = NativeRegisterContext.cpp; path = source/Target/NativeRegisterContext.cpp; sourceTree = "<group>"; };
23EDE3311926843600F6A132 /* NativeRegisterContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NativeRegisterContext.h; path = include/lldb/Target/NativeRegisterContext.h; sourceTree = "<group>"; };
@@ -2282,6 +2288,19 @@
path = source/Host/linux;
sourceTree = "<group>";
};
+ 23AB0526199FF5D3003B8084 /* FreeBSD */ = {
+ isa = PBXGroup;
+ children = (
+ 23AB052E199FF639003B8084 /* FreeBSDThread.h */,
+ 23AB052D199FF639003B8084 /* FreeBSDThread.cpp */,
+ 23AB0530199FF639003B8084 /* ProcessFreeBSD.h */,
+ 23AB052F199FF639003B8084 /* ProcessFreeBSD.cpp */,
+ 23AB0532199FF639003B8084 /* ProcessMonitor.h */,
+ 23AB0531199FF639003B8084 /* ProcessMonitor.cpp */,
+ );
+ path = FreeBSD;
+ sourceTree = "<group>";
+ };
260C897110F57C5600BB2B04 /* Plugins */ = {
isa = PBXGroup;
children = (
@@ -2395,6 +2414,7 @@
isa = PBXGroup;
children = (
26BC179F18C7F4CB00D2196D /* elf-core */,
+ 23AB0526199FF5D3003B8084 /* FreeBSD */,
4CEE62F71145F1C70064CF93 /* GDB Remote */,
233B008B196106E90090E598 /* Linux */,
2642FBA713D003B400ED6808 /* MacOSX-Kernel */,