summaryrefslogtreecommitdiff
path: root/README-1ST
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-09 13:25:45 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-09 13:25:45 -0500
commit865c0ff828f88ed1d00eea73a3fc55b3e57d21b3 (patch)
tree5acdfae32811b25fb46271bf349a216bea41fddb /README-1ST
parent55c7792c9329f97dd19fc5aeca466cb2de4fbf9c (diff)
parent9b396b41220646cf73fcd2a8afebcee06dde2a29 (diff)
downloadfork-ledger-865c0ff828f88ed1d00eea73a3fc55b3e57d21b3.tar.gz
fork-ledger-865c0ff828f88ed1d00eea73a3fc55b3e57d21b3.tar.bz2
fork-ledger-865c0ff828f88ed1d00eea73a3fc55b3e57d21b3.zip
Merge branch 'next'
Diffstat (limited to 'README-1ST')
-rw-r--r--README-1ST21
1 files changed, 21 insertions, 0 deletions
diff --git a/README-1ST b/README-1ST
index cb62accf..0b831828 100644
--- a/README-1ST
+++ b/README-1ST
@@ -59,3 +59,24 @@ you updated with the very latest version.
Send me that backtrace output, and the output from "ledger --version".
----------------------------------------------------------------------
+
+ - Q: Whenever I try to use the Python support, I get a segfault
+
+ A: Make sure that the boost_python library you linked against is using the
+ exact same Python as the Ledger executable. In particular I see this
+ bug on OS X systems where boost_python is linked against the default
+ Python, while Ledger is linked against the version provided by MacPorts.
+
+ Solution: Use one or the other. If you prefer the system Python, run
+ "port deactivate -f python26", to get MacPorts' version out of the way.
+ You'll then need to delete the Ledger binary and run "make" to relink
+ it.
+
+ ----------------------------------------------------------------------
+
+ - Q: When I run "make check", the Python unit tests always crash
+
+ A: This can happen for the same reason as above. It can also happen if you
+ have ICU support enabled. This is a bug I'm still trying to track down.
+
+ ----------------------------------------------------------------------