Windows/Build/emerge: Difference between revisions

From KDE Community Wiki
< Windows‎ | Build
 
(170 intermediate revisions by 33 users not shown)
Line 1: Line 1:
''emerge'' is a tool to build the KDE sources and its third party requirements on MS Windows. It is the '''easy''' way to build KDE on MS Windows.
#REDIRECT [[Guidelines and HOWTOs/Build from source/Windows]]
 
== Introduction ==
Emerge is a tool that can build the different parts of KDE and its dependencies under windows. We created this tool to automate and simplify the build process under windows. We try to build all packages that we offer in the KDE installer with emerge. That has some advantages for us:
* it is easy for people to join us:
Before emerge it was quite some work to set a system up for development. There were some quirks, which were documented in some mailing lists, but you had to remember them or you ran into an already solved problem again, etc.
Now to get a development machine you need a windows computer, need to install python and subversion and do the emerge checkout. Then execute emerge to build what you want to build. This is easy for developers coming from windows to KDE, and also for KDE developers coming to windows.
* it is easy for us to do (nightly/continuous/release/reproducable/...) builds:
With emerge you can build the whole software stack (lowlevel libs, qt, kdelibs, things above that) with only one command. You can start that build, and some hours later you can check, if it worked, or if something broke. So we can spot problems easier and earlier. We can also start with a "naked" windows computer without any other installed software and bootstrap kde on it. That ensures, that no hidden dependencies on some pieces of software sneak in, because then the builds on a "naked" computer would break and show the problem.
* it is easier to collaborate:
We can test the same emerge build description for a package on different windows versions/computers before we do binary releases. People can also add build descriptions for new packages to the subversion repository.
 
This emerge tool was inspired by the Gentoo emerge tool.
 
== Set up ==
=== Root directory ===
Create a directory if possible in your harddrive's root e.g. C:\kderoot or D:\kderoot (You will need this PATH later). This directory will contain the whole kde installation later. We will refer to it as %KDEROOT%.
 
=== Python interpreter ===
<tt>emerge.bat</tt> invokes an <tt>emerge.py</tt> script written in [http://en.wikipedia.org/wiki/Python_%28programming_language%29 Python] programming language, so you first need to [http://www.python.org/download/ install a Python Interpreter]. The ''python'' installation directory will be added to the PATH later by <tt>%KDEROOT%\etc\kdesettings.bat</tt> script.
 
=== Subversion client ===
The latest source code for windows ''emerge'' and the rest of KDE is stored in a repository created and managed using the [http://subversion.tigris.org/ Subversion] version control tool. You need a Subversion client for the first checkout. There are at least two applications:
*a command line client, available at [http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91 subversion.tigris.org] '''(required by emerge to get the source code from KDE Subversion repository)''', aimed at developers or power users accustomed with the command line,
*GUI program like [http://tortoisesvn.tigris.org/ TortoiseSVN], optional, useful for displaying differences between various versions of files in the repository in a graphical way.
 
Note 1: You can install and use both applications without conflicts.
 
Note 2: Make sure to use a copy of Subversion that was built on Windows so that checked-out files do not use UNIX line endings.  If you check out with UNIX line endings, the ''patch'' program will fail when attempting to apply a patch whose line endings don't match the system's.
 
=== Check out the ''emerge'' tool ===
The source code of the ''emerge'' tool and the recipes for creating KDE packages are located at <tt>svn://anonsvn.kde.org/home/kde/trunk/kdesupport/emerge</tt>, which is an URL based on Subversion-specific ''svn'' protocol.
 
You need to check out the source code from the ''emerge'' Subversion directory into a new directory, which in this example we will call %KDEROOT%.
*if you have a command line tool, you can accomplish this with the following commands:
<pre>cd %KDEROOT%
svn co svn://anonsvn.kde.org/home/kde/trunk/kdesupport/emerge
</pre>
*or, if you use TortoiseSVN:
*#right-click on your %KDEROOT% folder and select ''SVN Checkout...'' command from the context menu,
*#paste <tt>svn://anonsvn.kde.org/home/kde/trunk/kdesupport/emerge</tt> URL into the ''URL of repository'' text box
*#add <tt>\emerge</tt> to the folder name in the ''Checkout directory'' box and click OK to continue.
 
After the checkout you should have the directory <tt>%KDEROOT%\emerge</tt>. If you don't, you move your ''emerge'' directory to that location.
 
=== Configure the ''emerge'' tool ===
# Create the directory <tt>%KDEROOT%\etc</tt>.
# Copy the file <tt>%KDEROOT%\emerge\kdesettings-example.bat</tt> as <tt>%KDEROOT%\etc\kdesettings.bat</tt> and change its contents according to your [[#emerge_command_line_options_and_settings|needs]].
# Run it.
 
Note 1: '''Be sure that you neither have the msys/bin nor the cygwin/bin in your path. If so you have to definitely remove it.'''
Note 2 from a user: The applications gimp, inkscape and graphviz are also a problem. To make sure that there's nothing wrong I stripped my path to contain only what I needed to build.
 
== Running emerge ==
 
To use emerge you need to start a console window and point that to %KDEROOT%\emerge. For example:
 
F:
cd kderoot\emerge
 
Then you have to execute kdeenv.bat:
 
kdeenv.bat
 
This tells emerge about your environment settings (pathes, etc.). It will load your configuration from %KDEROOT%\etc\kdesettings.bat. It should not give any errormessages, otherwise emerge will not work as expected. The output should look similar to this one (of course with your paths):
 
F:\kr\emerge>kdeenv.bat
kdesettings.bat executed
KDEROOT    : f:\kr
KDECOMPILER : mingw
KDESVNDIR  : f:\kdesvn
PYTHONPATH  : f:\python25
DOWNLOADDIR : f:\kdl
 
F:\kr>
 
Now you should be able to use emerge. Type
 
emerge --help
 
to get some help about it.
 
== Setting up a compiler ==
Currently emerge supports both the MinGW and Microsoft C++ compilers. We did not add dependencies for the compilers, so you have to make sure to install a compiler by yourself. There are three ways to set up a compiler for emerge:
 
* Let emerge install the MinGW compiler:
 
To install the MinGW ( "Minimalist GNU for Windows" ) compiler with emerge, type
emerge mingw
and wait until it is finished.
 
* Point emerge to an existing MinGW installation:
 
This option is not recommended for now, because it only adds one more point of failure, and does not gain something in comparison to the option above.
* NOTE from a user: be sure that path to \mingw\bin has been set correctly, by default it is pointing to: %KDEROOT%\mingw\bin which does not apply to most installations
If you see an error about ''cc1plus'' not being found, either add MinGW's ''\libexec\gcc\mingw32\3.4.5'' to your ''PATH'' (in command line set PATH=%PATH%;path\to\directory) variable or copy the contents of this directory to MinGW's ''bin'' directory.  The prior is preferred.
 
Under Vista, the mingw directory may need to be moved to c:\ in order to compile properly.
 
* Point emerge to an existing Microsoft compiler:
 
<FIXME>
Everything applies to MS Visual Studio Compilers in a similar manner. Note however that for debug builds MS Visual Studio 2005 Service Pack 1 is required due to the use of manifest files and using pre-built packages for some dependecies.
 
 
If you open the command prompt under vista by right clicking and running as administrator, you don't get the UAC issues with vista trying to unsuccesfully run patch as an installer in a seperate environment.
 
== What emerge does ==
''emerge'' will fetch Windows versions of numerous UNIX-like utilities and libraries from the Internet, putting them in '''kderoot\bin''', then get the Win32 support files, then Subversion, then Perl and the Qt libraries, etc.
 
Then ''emerge'' compiles the Qt libraries, this takes hours.
 
'''emerge ''package'' ''' performs the separate actions <tt>--fetch</tt>, <tt>--unpack</tt>, <tt>--compile</tt>, <tt>--install</tt>, <tt>--manifest</tt>, and <tt>--qmerge</tt>.
 
== ''emerge'' command line options and settings ==
There are some options that can be used when building with ''emerge''.
 
{| border="0" cellpadding="2"
|-valign="top"
|<tt>-v</tt>
|<tt>EMERGE_VERBOSE</tt>
|width="5%"|
|This option augments the verbosity level - currently the highest verbosity level is 3 (<tt>-v -v -v</tt>). A verbosity level of 0 should give no output and equals to <tt>-q</tt>. You can set <tt>EMERGE_VERBOSE=3</tt> instead in the environment of the commandline or within your <tt>kdesettings.bat</tt> file.
|-valign="top"
|<tt>--nocopy</tt>
|<tt>EMERGE_NOCOPY</tt>
|
|This very useful option suppresses copying the sources from the local subversion tree to a directory within the build directory. It shouldn't be used while packaging; in the other cases it reduces the amount of harddisk used though and removes the copying time. You can set <tt>EMERGE_NOCOPY=True</tt> or <tt>=False</tt> instead.
|-valign="top"
|<tt>--offline</tt>
|
|
|This option suppresses the update step of the local tree - which needs some time. Be aware though that you have to have existing sources already if you want to use this option.
|-valign="top"
|<tt>-t</tt>
|<tt>EMERGE_BUILDTESTS</tt>
|
|This option enables or disables KDE4 buildtests for KDE modules. Other packages will not change. Use <tt>EMERGE_BUILDTESTS=True</tt> or <tt>=False</tt>.
|-valign="top"
|<tt>--buildtype=</tt>
|<tt>Debug</tt>
|
|This option enables full debugging mode for the build. '''Recommended if you plan to debug the runtime or provide more valuable feedback to developers about software defects.''' You can also change the 'set EMERGE_BUILDTYPE=RelWithDebInfo' line in the <tt>kdesettings.bat</tt> file.
|}
 
== Hints ==
*Once you have ''packagename'' built, type <code>emerge --unmerge packagename --noclean --target=svnHEAD packagename</code> to update <tt>packagename</tt> from the subversion and compile it without removing the build dir.
 
== Notes ==
 
''emerge'' can mostly cooperate with the [[Projects/KDE_on_Windows/Installation#KDE_Installer_for_Windows|kdewin-installer]] but we're currently still working on some packages which are packaged in a wrong way.
It is not recommended to use another layout then '''installer''' for '''directory_layout''' in the '''kdesettings.bat''' anymore (see that file for more detailed information).
 
''emerge'' creates lots of files in '''\kderoot\tmp''' during build.
After a package is successfully installed
(check '''\kderoot\etc\portage\installed''' or the directory '''\kderoot\manifest\'''), you can delete its temporary directory.
 
Windows ''emerge'' is derived from the Gentoo portage system, but we are currently not enforcing compatibility. If you have questions about that please contact us at the channel #kde-windows on irc.freenode.net.
 
==Vista issues==
*[[User:Jstaniek|jstaniek]] 12:02, 15 January 2008 (CET): UAC has infamous heuristics that make programs like patch.exe treat as installers and try to run them with admin rights (!). This heuristics can be tricked by renaming patch.exe to something like pch.exe ([http://nevali.net/2007/01/update-workaround-for-the-cygwin-uac-problem/ example]) but we did not want to add item to our infrastructure. Instead it is possibleto turn off the heuristics (see the screenshot [http://theinvisiblethings.blogspot.com/2007/02/running-vista-every-day.html here in the security blog calling the heuristics 'severe hole in the design of UAC']). If you happen to disable the UAC, as many annoyed users and devs do (msvc demands admin rights anyway!), patch.exe should already work for you as in older Windows. Alternatively you may want to disable UAC [http://www.howtogeek.com/howto/windows-vista/disable-user-account-controluac-for-administrators-only/ for admins only], but this makes no sense if you are the only user of your machine and use only the admin account.
 
[[Category:MS Windows]]

Latest revision as of 14:58, 18 March 2016