Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tommy Webb
Tor Browser
Commits
bb845f4c
Commit
bb845f4c
authored
11 years ago
by
Jonathan Watt
Browse files
Options
Downloads
Patches
Plain Diff
Bug 941539 - Add a .lldbinit file to the tree and make the build system install it to $(DIST)/bin
parent
bf596e7e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.lldbinit
+7
-0
7 additions, 0 deletions
.lldbinit
build/Makefile.in
+9
-0
9 additions, 0 deletions
build/Makefile.in
with
16 additions
and
0 deletions
.lldbinit
0 → 100644
+
7
−
0
View file @
bb845f4c
# .lldbinit file for debugging Mozilla
# Mozilla's use of UNIFIED_SOURCES to include multiple source files into a
# single compiled file breaks lldb breakpoint setting. This works around that.
# See http://lldb.llvm.org/troubleshooting.html for more info.
settings set target.inline-breakpoint-strategy always
This diff is collapsed.
Click to expand it.
build/Makefile.in
+
9
−
0
View file @
bb845f4c
...
...
@@ -76,6 +76,15 @@ GDBINIT_FILES := $(topsrcdir)/.gdbinit
GDBINIT_DEST
=
$(
FINAL_TARGET
)
INSTALL_TARGETS
+=
GDBINIT
# Put a useful .lldbinit in the bin directory, to be picked up automatically
# by LLDB when we debug executables using that directory as the current working
# directory.
# NOTE: Keep .lldbinit in the topsrcdir for people who run LLDB from the
# topsrcdir rather than the bin directory.
LLDBINIT_FILES
:=
$(
topsrcdir
)
/.lldbinit
LLDBINIT_DEST
=
$(
FINAL_TARGET
)
INSTALL_TARGETS
+=
LLDBINIT
include
$(topsrcdir)/config/rules.mk
# we install to _leaktest/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment