mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 22:38:41 +09:00
8 lines
233 B
Python
8 lines
233 B
Python
|
|
""" GDB Python customization auto-loader for libxul """
|
||
|
|
#filter substitution
|
||
|
|
|
||
|
|
import os.path
|
||
|
|
sys.path[0:0] = [os.path.join('@topsrcdir@', 'js', 'src', 'gdb')]
|
||
|
|
|
||
|
|
import mozilla.autoload
|
||
|
|
mozilla.autoload.register(gdb.current_objfile())
|