(→Introduction) |
(→Home Path) |
||
| Line 78: | Line 78: | ||
/home/myuser/kde/home/master/kdelibs | /home/myuser/kde/home/master/kdelibs | ||
/home/myuser/kde/home/4.6/kdelibs | /home/myuser/kde/home/4.6/kdelibs | ||
| + | |||
| + | === Other Paths === | ||
| + | There are a number of other paths that are required, but these can all be automatically derived and created by the config script given below. | ||
== Environment Configuration == | == Environment Configuration == | ||
== Useful Scripts == | == Useful Scripts == | ||
Contents |
Configuring your build environment is the single most important step in building KDE. A wrong decision or mistake here could at best mean you have to rebuild everything from scratch again, or at worst break your system KDE rendering your system unusable.
A lot of very important concepts will be discussed and it is important that you understand them before proceeding.
A set of configuration scripts and bash commands are provided as a recommended configuration when building KDE manually. If you use these as provided then your KDE build will be a lot easier and it will be easier for you to find support online. The one disadvantage to these scripts is that they hide important details from you which you may want to learn about, but the two methods are completely interchangeable so once you are comfortable building KDE using the scripts you can learn more by doing everything yourself.
It is recommended that you build KDE using your normal user account. In some circumstances you may want to build using a separate user account, such as if you are a KWin or Plasma developer wishing to test a full KDE session with compositing effects, but for most circumstances a simple way can be found for achieving the same aim while still running using your normal user account (e.g. Nested X using xypher).
This section explains the different paths that need to be configured for building KDE. The following section will demonstrate a simple method for setting up the required paths.
The $KDE_SRC path environment variable defines where the KDE Build System can find the source files.
TODO: Decide how to do stable and unstable source branches in parallel. While Git supports having these in a single source clone, it is sometimes nice to have separate clones to allow simultaneous parallel builds.
The $KDE_BUILD path environment variable defines where the KDE Build System will create the build files.
The KDE build system requires that your source and build files be in different directories (aka out-of-source builds). This keeps your source directories clean and simplifies management of your different build files. :
While for some simple build scenarios you could just create a "build" directory inside your 'source' directory (e.g. "kde/src/kdelibs/build"), this negates many of the advantages when used with a full KDE build. Instead clearly separate paths are recommended.
For example if we were building kdelibs we could have the following folders:
/home/myuser/kde/src/kdelibs /home/myuser/kde/build/kdelibs
If you plan to build multiple branches of KDE such as stable and unstable in parallel then you will need to add an extra level to the build directory:
/home/myuser/kde/src/kdelibs /home/myuser/kde/build/master/kdelibs /home/myuser/kde/build/4.6/kdelibs
The $KDEDIR path environment variable defines where the KDE Build System will install KDE.
It is strongly recommended for a development build that you do a user based install and not a root install, i.e. install your KDE build into a separate user folder and not into the system /usr folder. This provides a number of advantages:
That said, the build instructions provided are completely generic and will work for building a root system install if you configure your environment to do so, i.e. for Linux from Scratch or doing a root install in a virtual machine for testing or packaging purposes.
For the kdelibs example given above we would then have:
/home/myuser/kde/src/kdelibs /home/myuser/kde/build/master/kdelibs /home/myuser/kde/build/4.6/kdelibs /home/myuser/kde/inst/master/kdelibs /home/myuser/kde/inst/4.6/kdelibs
The $KDEHOME path environment variable defines wat directory KDE will treat as your home folder, i.e. for stroing data writing config files to.
For the same reason as the Install Path, it is strongly recommended that you set your KDE Home Path to be different from your normal home folder.
For the kdelibs example given above we would then have:
/home/myuser/kde/src/kdelibs /home/myuser/kde/build/master/kdelibs /home/myuser/kde/build/4.6/kdelibs /home/myuser/kde/inst/master/kdelibs /home/myuser/kde/inst/4.6/kdelibs /home/myuser/kde/home/master/kdelibs /home/myuser/kde/home/4.6/kdelibs
There are a number of other paths that are required, but these can all be automatically derived and created by the config script given below.