Closed
Bug 1412024
Opened 8 years ago
Closed 8 years ago
./mach run do not accept --debug or --debugger argument.
Categories
(Firefox Build System :: General, defect)
Firefox Build System
General
Tracking
(firefox58 affected)
RESOLVED
DUPLICATE
of bug 1411776
| Tracking | Status | |
|---|---|---|
| firefox58 | --- | affected |
People
(Reporter: jya, Unassigned)
Details
running ./mach run --debug gives:
l$ ./mach run --debug
Error running mach:
['run', '--debug']
The error occurred in the implementation of the invoked mach command.
This should never occur and is likely a bug in the implementation of that
command. Consider filing a bug for this issue.
If filing a bug, please include the full output of mach, including this error
message.
The details of the failure are as follows:
AttributeError: 'module' object has no attribute 'get_default_debugger_name'
File "/home/jyavenard/Work/Mozilla/mozilla-central/python/mozbuild/mozbuild/mach_commands.py", line 1417, in run
debugger = mozdebug.get_default_debugger_name(mozdebug.DebuggerSearch.KeepLooking)
running ./mach run --debug --debugger=gdb gives:
$ ./mach run --debug --debugger=gdb
Error running mach:
['run', '--debug', '--debugger=gdb']
The error occurred in the implementation of the invoked mach command.
This should never occur and is likely a bug in the implementation of that
command. Consider filing a bug for this issue.
If filing a bug, please include the full output of mach, including this error
message.
The details of the failure are as follows:
AttributeError: 'module' object has no attribute 'get_debugger_info'
File "/home/jyavenard/Work/Mozilla/mozilla-central/python/mozbuild/mozbuild/mach_commands.py", line 1420, in run
self.debuggerInfo = mozdebug.get_debugger_info(debugger, debugger_args)
Updated•8 years ago
|
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → DUPLICATE
Updated•8 years ago
|
Component: mach → Build Config
Updated•7 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•