blob: b9f572dce8dce64ed5c9d6c8c5a3f1b53008179d [file] [log] [blame]
import sys
import os.path
import traceback
if __name__ == "__main__":
try:
sys.path.append(os.path.dirname(__file__))
import ompd
ompd.main()
print("OMPD GDB support loaded")
print("Run 'ompd init' to start debugging")
except Exception as e:
traceback.print_exc()
print("Error: OMPD support could not be loaded", e)