[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: |
Thu, 21 Aug 2014 14:48:44 -0700 |
On Thu, Aug 21, 2014 at 1:44 PM, Friedrich Beckmann
<address@hidden> wrote:
> Hi, I try to work on the pspp code. If I just do configure and make and then
> I start psppire in the src/ui/gui folder, then some ui parts are missing. What
> is the correct way to debug psppire? At the moment I install to some temporary
> directory. Then can start, but I work with the installed libraries and not the
> ones build with „make“.
That is the way that I do my work. It is a little easier if you configure with
"--enable-relocatable", because then you can temporarily install to any
directory.
When I am working on the GUI, I usually build with:
make install DESTDIR=$PWD/inst
and then start PSPPIRE with "inst/usr/local/bin/psppire".
Maybe John has another way.