Gentoo Archives: gentoo-user

From: Rich Freeman <rich0@g.o>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] How to trace down compilation issues if the compilation does not break...?
Date: Sun, 06 Jan 2019 15:37:41
Message-Id: CAGfcS_nr8fqF4hU+cE8PJh2opE7U=fGYeEU_39yi0+zAjJW0ew@mail.gmail.com
In Reply to: [gentoo-user] How to trace down compilation issues if the compilation does not break...? by tuxic@posteo.de
1 On Sun, Jan 6, 2019 at 10:31 AM <tuxic@××××××.de> wrote:
2 >
3 > The problem with this problem is, that the compilation process
4 > is successful and all files will be removed from /var/tmp/portage
5 > afterwards.
6 >
7
8 If you already have the dependencies installed all you have to do is
9 chdir to the directory with the ebuild and run:
10 ebuild krita-x.y.z.ebuild configure
11 You can use compile/install to step through the compile and install
12 steps. In general you can just go straight to install and end up with
13 a complete build and install image, but it won't touch your actual
14 root filesystem.
15
16 Note that the ebuild tool is mainly intended for troubleshooting
17 ebuilds and such - it does not resolve dependencies, so you need to
18 take care of that before running it.
19
20 If you need to start over just run the clean command. man ebuild...
21
22 --
23 Rich