Getting Started/Build/KDE4: Difference between revisions

    From KDE TechBase
    m (→‎The Recipe: err, here actually the src dir is meant. :/)
    (Redirected page to Getting Started/Build)
     
    (557 intermediate revisions by 78 users not shown)
    Line 1: Line 1:
    {{TutorialBrowser|
    #REDIRECT [[Getting_Started/Build|Building KDE]]
     
    series=Getting Started|
     
    name=Building KDE4 From Source|
     
    pre=[[../../Sources/Anonymous_SVN|Anonymous SVN Quickstart Guide]]|
     
    next=[[../../Set_up_KDE_4_for_development|Starting a KDE4 Environment and Applications]]|
     
    reading=[http://kdesvn-build.kde.org/ kdesvn-build: The KDE From Subversion Build Tool]<br>[[../../Increased_Productivity_in_KDE4_with_Scripts|Increased Productivity in KDE4 with Scripts]]<br>[[Development/Tutorials/CMake |Introduction to CMake]]<br>[[../KDE4/FreeBSD|FreeBSD notes]]<br>[[../KDE4/Mac OS X|Instructions for Mac OS X]]|
    }}
     
    == Abstract ==
     
    This tutorial shows one way to get KDE from trunk running on Linux/BSD systems. Throughout the tutorial the bash shell is used. If you are interested in building KDE on other systems such as Solaris, MacOS or Microsoft Windows, please visit the [[../|Build]] page and see the links at the bottom for the respective operating systems.
     
    {{note|Expect a higher risk of build failure on Mondays when critical changes are implemented. [http://developer.kde.org/~dirk/dashboard/ Dashboard] reports unexpected breakages. You are encouraged to fix failing modules.
    }}
     
    == Required Software ==
     
    The following must be installed first before you can successfully complete this tutorial:
    * gcc and g++ from the gcc project, preferably version 4.1 or higher
    * svn, the subversion revision control client
    * pkg-config
    * development libraries and headers for X11 and OpenGL
    * development libraries and headers for libjpeg, libpng, libungif, libclucene, libxml2 and libxslt
    * the makeobj script. You can install it as part of a kdesdk-scripts (debian) or similar package, or just download it itself from [http://websvn.kde.org/trunk/KDE/kdesdk/scripts/makeobj?revision=600932&view=markup WebSVN]
    * the shared-mime-info package, which is the freedesktop MIME standard KDE is using now
     
     
    You may also want to have the following installed:
    * bash
     
    == Create a user account for KDE4 development ==
     
    Some people like to have a separate user account for kde (for instance an old bug deleted files by mistake), and the instructions below were written with that approach.
     
    However it is much more efficient to do everything with a single user account, see http://techbase.kde.org/Getting_Started/Increased_Productivity_in_KDE4_with_Scripts
    for more details. You can still follow the instructions below, but don't put the environment variables in your .bashrc, put them in a separate file that you source to switch to the kde4 environment.
     
    === Option 1: Command Line ===
    <code bash>
    useradd -m kde-devel
    </code>
    or:
    <code bash>
    useradd kde-devel
    mkdir /home/kde-devel
    passwd kde-devel
    chown kde-devel:kde-devel /home/kde-devel 2>/dev/null || \
    chown kde-devel:users /home/kde-devel
    </code>
     
    === Option 2: Using KControl ===
     
    Instead of using the commands above, you can also use the User module in the KDE Control Center if you already have KDE3 installed.
     
    === Setting up the environment ===
     
    Copy the {{path|~/.bashrc}} from your normal user account to the new kde-devel account. Next, copy and paste the contents of the [[Getting Started/Increased Productivity in KDE4 with Scripts/.bashrc|example .bashrc]] into {{path|~kde-devel/.bashrc}}. Be sure to comment out the line <tt>alias make=makeobj</tt> if you do not have the <tt>makeobj</tt> command available, this command comes with the KDE SDK scripts.
     
    This will provide access to commands such as <tt>cmakekde</tt> that are used in this tutorial as well as ensure that the proper paths are in place for Qt, KDE and CMake binaries.
     
    For more information, please read the [[Getting Started/Increased Productivity in KDE4 with Scripts]] tutorial.
     
    === Switching to the New User ===
    Switch to the user kde-devel: (don't forget the dash)
    <code bash>
    su - kde-devel
    </code>
     
    The rest of this tutorial assumes you are running as the <tt>kde-devel</tt> user.
     
    == The development user's shell ==
     
    On some systems a new user is configured by default to use {{path|/bin/sh}}. If this is not the case on your system, you can skip this section. Using {{path|/bin/sh}} can be very inconvenient to work with and you may want to change it to {{path|/bin/bash}} or another shell.
     
    === Option 1: As the kde-devel user ===
     
    If you don't have root privileges and your system supports the changing of your own shell with the <tt>chsh</tt> application, then you could try to change your shell to /bin/bash by using:
    <code bash>
    chsh -s /bin/bash kde-devel
    </code>
     
    === Option 2: As the root user ===
     
    If your system comes with the <tt>usermod</tt> application you can run the following command as root: <tt>usermod -s /bin/bash</tt>.
    s
    Another option is to use the <tt>vipw</tt> application as root to safely edit your {{path|/etc/passwd}}. Locate 'kde-devel' in the the file. Change '{{path|/bin/sh}}' at the end of the line to read '{{path|/bin/bash}}', save your changes and exit.
     
    The new shell will be started automatically when you log in as the kde-devel user again.
     
    == D-Bus ==
    QtDBus and KDE are known to work with D-Bus versions 0.62, as well as 0.92 and upwards. Versions 0.60 and 0.61 may work too but are not tested. Versions 0.90 and 0.91 are known not to work. We recommend using post-1.0 release versions (at least 0.94), so consider upgrading if you haven't done so.
     
    You may skip this section if you have a recent D-Bus version or if you don't want to upgrade.
     
    Before running these steps in the recipe, make sure your X11 headers and libraries are available. The configure script run on line 5 should output:
    Building X11 code:        yes
     
    === The Recipe ===
     
    {{tip|Check [[Getting Started/Increased Productivity in KDE4 with Scripts]] for some aliases that help with KDE development. These include aliases to switch from the build into the source directory (cs) and back (cb).}}
     
    <!--'cs' and 'cb' are NOT typos!-->
    <code bash>
    cs
    wget http://dbus.freedesktop.org/releases/dbus/dbus-1.0.2.tar.gz
    tar -xvzf dbus-1.0.2.tar.gz
    cd dbus-1.0.2/
    ./configure --prefix=$DBUSDIR --localstatedir=$KDEDIR/var
    make
    make install
    dbus-uuidgen --ensure
    </code>
     
    === What's Happening ===
    After changing into the source directory (line 1), D-Bus source code is downloaded from freedesktop.org (line 2) and unpacked (line 3). After going into the newly created D-Bus directory (line 3), the build is set up using the supplied {{path|configure}} script (line 5). After building (line 6) and installing (line 7) D-Bus, we use the <tt>dbus-uuidgen</tt> tool to install a machine identification file that allows the bus to start automatically when the desktop session starts (line 8).
     
    Note that you need write access to {{path|/var}} for the last two steps. If your system does not have the sudo command, you can use the <tt>su</tt> command instead, e.g. <tt>su -c "make install"</tt>.
     
     
     
    == CMake ==
    Skip this if you have [http://cmake.org/ CMake] >=2.4.5 installed.
    You should be able to directly use the binary packages available on the [http://www.cmake.org/HTML/Download.html CMake site]. There are also distribution specific packages available.
    CMake binary packages for openSUSE are available from [http://software.opensuse.org/download/devel:/tools:/building/ openSUSE build service].
     
    === The Recipe ===
    <!--'cs' and 'cb' are NOT typos!-->
    <code bash>
    cs
    wget http://www.cmake.org/files/v2.4/cmake-2.4.6.tar.gz
    tar zxf cmake-2.4.6.tar.gz
    mkdir cmake-build
    cd cmake-build
    ../cmake-2.4.6/bootstrap
    make
    sudo make install
    </code>
     
    === What's Happening ===
    First, we go back to the <tt>kde-devel</tt> user's source directory (line 1), get the CMake sources (line 2) and unpack them (line 3). We create a directory to build CMake in (line 4) and go into it (line 5). We then run the CMake boostrap script to set up the CMake build (line 6), then make (line 7) and install it (line 8) using the root user.
     
    If your system does not have the <tt>sudo</tt> command, you can instead do <tt>su -c "make install"</tt>.
     
    == Qt ==
    Next we need to get the Qt4 that is in KDE's source repository. KDE is guaranteed to build against any Qt 4.3. That is still an unreleased version, so your distribution probably doesn't have packages for it. You should use the copy in the KDE Subversion servers.
     
    KDE is no longer supported on Qt 4.2 and earlier versions.
     
    Hint: This part may take some time depending on what kind of hardware your computer is running.
     
    === The Recipe ===
    <code bash>
    cd
    svn checkout svn://anonsvn.kde.org/home/kde/trunk/qt-copy
    cd qt-copy
    ./apply_patches
    ./configure -qt-gif -no-exceptions -debug -fast \
    -prefix $QTDIR -qdbus -pch -nomake examples \
    -nomake demos
    make sub-src sub-tools
    # make install: only if QTDIR is not the current directory!
    make install 
    </code>
     
    === What's Happening ===
    We switch back to the <tt>kde-devel</tt> user's home directory (line 1) and download the source code using subversion (svn) from KDE's repository (line 2). After changing into the resulting {{path|qt-copy}} directory (line 3), we run a script that manages the patches that come with <tt>qt-copy</tt> (line 4).
     
    Once the patches have been applied, we then set up the build using the <tt>configure</tt> script (line 5-7). The various command line options used are explained in the {{path|qt-copy/README.qt-copy}} file. Finally, we build the minimal requirements for KDE (line 8) and install (line 9-10) Qt. If you want all the example and demo applications, you can either build them individually or simply do a <tt>make</tt> from the {{path|qt-copy}} directory. Note that the installation does not require root as it installs it locally into {{path|qt-copy}} itself.
     
    === Troubleshooting ===
    If you get "error: X11/Xlib.h: No such file or directory", install the devel package of <tt>xorg</tt> (the actual name may vary between operating systems, for example it is <tt>xorg-dev</tt> on Ubuntu based systems such as Kubuntu).
     
    If you get an error in the configure step about missing defines, check the value of <tt>$QMAKESPEC</tt>.  Some distributions set this to point directly to the system-installed Qt.  If <tt>unset QMAKESPEC</tt> solves the problem, you probably want to add it to the <tt>~/.bashrc</tt> script.
     
    If you get an error ".pch/debug-shared/QtCore", this is because Qt-4.3 enables precompiled headers if your gcc supports it, but for some reason it doesn't work for you. If you use distcc, configure qt with -no-pch. If you use icecream, update to the latest icecream from svn trunk.
     
    Try running any Qt program, like {{program|assistant}}. If it crashes in QSpanData::adjustSpanMethods, then your problem is the oxygen style. Try removing {{path|/lib/kde4/plugins/styles/kstyle-oxygen.so}} and {{path|/lib/kde4/plugins/styles/oxygen.so}} if they exist.
     
    == Strigi ==
     
    {{warning|If you have jumped to this section without reading section 3.3 Setting Up The Environment '''the recipes provided will not work'''. The recipes are not in error; <tt>cs</tt> and <tt>cb</tt> are not typos. You '''must''' follow the instructions in section 3.3 for this tutorial to work for you.}}
     
    The code for getting at file metadata now relies on Strigi. To install Strigi you need the libraries and headers for libz, libbz2, openssl (libcrypto or libssl), libclucene (>=0.9.16), and either libxml2 or libexpat.
     
    === The Recipe ===
    <!--'cs' and 'cb' are NOT typos!-->
    <code bash>
    cs
    svn checkout svn://anonsvn.kde.org/home/kde/trunk/kdesupport/strigi
    cd strigi
    cmakekde
    </code>
     
    === What's Happening ===
    We change to the base source directory (line 1). We download the sources for strigi using subversion (line 2), go into the new ~/src/strigi directory (line 3), and commence the build (line 4). This will leave us in the strigi build directory after the build is completed.
     
    == kdelibs ==
     
    With Qt4 and Strigi built, we can now move on to building KDE's base libraries. If you use the aforementioned [[Getting Started/Increased Productivity in KDE4 with Scripts/.bashrc|.bashrc]] this is where those new functions come in handy.
     
    Hint: This part may take some time depending on what kind of hardware your computer is running.
     
    === The Recipe ===
    <!--'cs' and 'cb' are NOT typos!-->
    <code bash>
    cd $KDE_SRC
    mkdir KDE && cd KDE
    svn checkout svn://anonsvn.kde.org/home/kde/trunk/KDE/kdelibs
    cd kdelibs
    cmakekde
    </code>
     
    {{tip|If this command fails stating that CMake requires an out of source build directory, remove ~/src/KDE/kdelibs/CMakeCache.txt, and try again.}}
     
    {{tip|If <tt>cmakekde</tt> still gives the same error then try this
    <code bash>
    cd
    cmake -DCMAKE_INSTALL_PREFIX=$KDEDIR \
    -DCMAKE_BUILD_TYPE=debugfull DKDE4_BUILD_TESTS=ON \
    ~/src/KDE/kdelibs
    make
    make install
    </code>}}
     
    === What's Happening ===
    We change to the base source directory (line 1) then make and go into the KDE directory (line 2). We download the sources for kdelibs using subversion (line 3), go into the new {{path|~/src/KDE/kdelibs}} directory (line 4), and commence the build (line 5). This will leave us in the <tt>kdelibs</tt> build directory after the build is completed.
     
    {{tip|There might be missing dependencies on your system! They are easily overlooked in the output of <tt>cmakekde</tt>.
    You might want to do a <tt>cmake ~/src/KDE/MODULE_NAME</tt> prior to compiling any kde modules (like kdelibs, kdepimlibs etc.)}}
     
    === Additional KDE-specific CMake modules ===
    There are additional CMake modules in {{path|kdelibs/cmake/modules/}} that are necessary for building KDE4 applications. These will be installed for you when  kdelibs itself is installed.
     
    === Troubleshooting ===
    If you have problems compiling kdelibs, first make sure the software in the "Required Software" section above is installed and works. Other possible hints include:
    * If you received an error stating "Please create a separate build directory and run 'cmake path_to_kdelibs [options]' there." then you need to change to your build directory before running cmakekde. (e.g <tt>cs KDE/kdelibs && cb && cmakekde</tt>)
    * If Qt wasn't found or the wrong version of Qt was found, make sure that the qmake from the Qt you need is the first qmake in the path.
    * If the problems persist, try the CMake make-option <tt>--keep-going</tt>.
    * Here you need the libungif library, otherwise you will get an error message like "<tt>Could NOT find GIF</tt>".
    * Qt-4.3 upgrade: if you get a link error in kjsembed talking about QScriptEngine, edit CMakeCache.txt in kdelibs and remove the lines that talk about QT_QTUITOOLS_LIBRARY, then type make again (that static library has a new dependency, and the cmake code that adds it, needs to run).
     
    == kdepimlibs ==
    After <tt>kdelibs</tt>, but before ''kdebase'', you need to build and install ''kdepimlibs''.
     
    === The Recipe ===
    <!--'cs' and 'cb' are NOT typos!-->
    <code bash>
    cs KDE
    svn checkout svn://anonsvn.kde.org/home/kde/trunk/KDE/kdepimlibs
    cd kdepimlibs
    cmakekde
    </code>
     
    === What's Happening ===
    We go into the KDE source directory (line 1), download the source code for kdepimlibs using subversion (line 2) and then go into the new {{path|~/src/KDE/kdepimlibs}} directory (line 3). We then commence the build (line 4). This will leave us in the <tt>kdepimlibs</tt> build directory after the build is completed.
     
    == kdebase ==
    You may need kdebase for some kioslaves.
    <!--'cs' and 'cb' are NOT typos!-->
    <code bash>
    cs KDE
    svn checkout svn://anonsvn.kde.org/home/kde/trunk/KDE/kdebase
    cd kdebase
    cmakekde
    </code>
    === Troubleshooting ===
    If you have troubles compiling kdebase:
    * Make sure you have the <tt>libxss headers</tt> installed. (Usually you got undefined references on xscreensaver objects if you haven't those headers)
    * <tt>which meinproc</tt> has to deliver {{path|/home/kde-devel/kde/bin/meinproc}}
    * if cmakekde cannot find the path of kdepimlibs, edit the file /home/kde-devel/kdebase-build/CMakeCache.txt and manually set KDEPIMLIBS_INCLUDE_DIR:PATH=/home/kde-devel/kdepimlibs-build
    * if you get an error saying "Please set the following variables: X11_XTest_LIB (ADVANCED)", install the devel package of <tt>Xtst</tt>. On some systems, this is packaged separately from <tt>xext</tt> and called <tt>x11proto-xext-dev</tt> or <tt>libxtst-dev</tt>. You may also need to remove the CMakeCache.txt file in the build dir after installing the package.
    * the same for "X11_Xinerama_LIB (ADVANCED)" where you will need the devel package for <tt>xinerama</tt>.
    * if you get the error "Please set the following variables: FONTCONFIG_INCLUDE_DIR, FONTCONFIG_LIBRARIES (ADVANCED)", then you need to install libfontconfig
     
    == Generating local API documentation ==
    Although the API documentation for KDE is available online at [http://api.kde.org api.kde.org], it is sometimes useful to have it on your own disk, for example when you want to use KDevelop for browsing the documentation or when you are not able to be online all the time.
     
    Be aware that generating the API documentation can take several hours and takes almost half a gigabyte of diskspace.
    The generation is handled by a script in kdelibs/doc/api, you need ''doxygen'' to be able to run it.
     
    To build the API documentation for kdelibs, type the following:
    <!--'cs' and 'cb' are NOT typos!-->
    <code bash>
    cs KDE
    mkdir apidox
    cd apidox
    ../kdelibs/doc/api/doxygen.sh ../kdelibs/
    </code>
     
    == Success! ==
     
    You are now ready to start building other svn modules in the same fashion as you built kdebase, running and testing KDE4 or writing your own patches and applications.
     
    See the [[Getting Started/Set up KDE 4 for development|Starting a KDE4 Environment and Applications]] tutorial for how to start working on your new KDE4 installation.
     
    ==References==
    <references />
     
    [[Category:Build KDE]]
    [[Category:KDE4]]

    Latest revision as of 16:34, 20 March 2011