- Everything running on a single Ubuntu Server
- RhodeCode running in a virtualenv
- Use SQLite as the database
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GDB python extension to pull the source files from a server, when executing "gdb backtrace" | |
# Modify file_server to match your needs | |
# Tested on gdb 7.10 | |
# It depends on scp and password-less login. | |
# Adapted from a GDB example [https://sourceware.org/gdb/onlinedocs/gdb/Python.html#Python] | |
import gdb | |
from gdb.FrameDecorator import FrameDecorator | |
file_server='host where you've built' |