Skip to content

Commit

Permalink
version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
p-x9 committed Sep 10, 2023
1 parent 7d418b3 commit 06d0a68
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/iLLDB.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import lldb
import os

iLLDB_VERSION = "0.1.0"


def __lldb_init_module(debugger: lldb.SBDebugger, internal_dict: dict) -> None:
file_path = os.path.realpath(__file__)
dir_name = os.path.dirname(file_path)
load_commands(dir_name, debugger)
print("[iLLDB] loaded")
print(f"[iLLDB] loaded: Version {iLLDB_VERSION}")


def load_commands(dir_name: str, debugger: lldb.SBDebugger) -> None:
Expand Down

0 comments on commit 06d0a68

Please sign in to comment.