mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
567 B
20 lines
567 B
# You can debug gnucash by running gdb as "gdb -x gnucash.gdb-cmds"
|
|
# and then executing "run-gnucash somefile".
|
|
#
|
|
# Secrets: gdb requires that parens be escaped as well as quotes ...
|
|
|
|
THESE ARE BROKEN We need a new strategy that handles the GNC_ envt vars.
|
|
|
|
file gnucash.bin
|
|
|
|
define run-gnucash
|
|
set args --debug \
|
|
--startup-dir ./share/scm/startup \
|
|
--share-dir ./share \
|
|
--config-dir ./etc \
|
|
--load-path \(\"\(./share/scm\)\"\) \
|
|
--doc-path \(\"\(./Docs\)\"\"\(./Reports\)\"\) \
|
|
$arg0
|
|
run
|
|
end
|