[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to work on the pspp code?
From: |
Ben Pfaff |
Subject: |
Re: How to work on the pspp code? |
Date: |
Fri, 22 Aug 2014 08:03:18 -0700 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
On Fri, Aug 22, 2014 at 11:43:08AM +0200, Friedrich Beckmann wrote:
> I could not figure out a way to find the ui files without using
>
> configure --prefix=<sometmpdirectory>
> make install
That is what "--enable-relocatable" allows you to do: you can install
and run anywhere, including to a temporary directory.
> ./src/ui/terminal/pspp and ./src/ui/gui/psppire are in fact shell script
> wrappers which
> are produced by libtool. Those scripts can not be run in gdb.
> To start pspp in gdb:
>
> address@hidden:~/pspp/build$ libtool --mode=execute gdb
> ./src/ui/terminal/pspp
Yes. Or you can abbreviate "--mode=execute" to just "e", which is
faster to type.