Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SWT/Devel/Gtk/Compiling Gtk"

< SWT‎ | Devel‎ | Gtk
(GTK Versions)
(Compiling GTK)
 
(One intermediate revision by the same user not shown)
Line 21: Line 21:
 
     make
 
     make
  
For more detailed configuration/compilation options, see Leo's guide [https://coffeeorientedprogramming.wordpress.com/2014/09/29/how-to-compile-various-gtk3-versions-and-run-eclipse-apps-with-those/ here.]
+
This process outputs .SO files which can be fed to SWT applications using LD_LIBRARY_PATH. The script below compiles GTK and gathers the .SO files in a ~/gtk_src folder.
 
+
    cd /home/ericwill/git/gtk/
Once make has finished running, you will have a .libs directory in the /gtk/gtk/ directory. This is useful for running SWT snippets or Eclipse apps using a specific version of GTK. It is wise to copy the entire gtk parent directory to another directory, so you do not have to compile that GTK version again. For example, I keep my various compiled versions in a folder named:
+
    git clean -xdf
    ~/src/gtk_versions/
+
    ./autogen.sh
 +
    ./configure
 +
    make
 +
    find . -name "*.so*" -exec cp {} ~/gtk_src/ \;
  
 
== Dealing with make build failures ==
 
== Dealing with make build failures ==

Latest revision as of 15:24, 19 September 2018

Getting GTK

Make sure you have git installed, and then clone the GTK git repository using the following command in the directory you wish to have the GTK repository:

    git clone https://github.com/GNOME/gtk.git

This will create a gtk directory in your current directory. Enter this directory once git has finished downloading all the files.

GTK Versions

You can see which versions are available to checkout by typing:

    git branch -a

Checkout the tag with the version of GTK that you want. For example, if I wanted to checkout GTK3.12.2, it would usually look like this:

    git checkout 3.12.2

Note that after you switch branches, you need to do a git clean to remove any changes between branches. Run this command:

    git clean -xdf            #d=directory, f=force, x=clean ignored files

Compiling GTK

When in the parent gtk directory, run the following commands in order, after each one stops executing:

    ./autogen.sh
    ./configure
    make

This process outputs .SO files which can be fed to SWT applications using LD_LIBRARY_PATH. The script below compiles GTK and gathers the .SO files in a ~/gtk_src folder.

    cd /home/ericwill/git/gtk/
    git clean -xdf
    ./autogen.sh
    ./configure
    make
    find . -name "*.so*" -exec cp {} ~/gtk_src/ \;

Dealing with make build failures

Building GTK can be a tricky. You may run into the following issues:

Build failure due to missing packages

The build can fail if you are missing certain packages.

For example make may fail with:

   gcc: error: /usr/lib/rpm/redhat/redhat-hardened-cc1: No such file or directory

In such cases you can do the following to resolve the build issues:

  • Google the error message/file. Ex google "redhat-hardened-cc1: No such file or directory. You often bump into threads that tell you which packages to install.
  • Use dnf to find out which package contains the necessary file:
   sudo dnf provides '*/redhat-hardened-cc1'

Incorrect versions of libraries

You may run into error messages during configuration about some of your libraries being too old. To resolve this issue, the easiest way is to upgrade your Fedora (or other linux distro) to the newest or beta versions (rawhide).

Use compiled GTK libraries with SWT snippets

To find out how to run SWT snippets with the compiled GTK, see this section in the SWT GTK development guide.

Back to the top