Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: relocated content to apache wiki

This page covers miscellaneous topics about configuring the Eclipse IDE for work with Daffodil (or generally).

Contents

Table of Contents
excludeContents

Graphics Problems on Linux/Fedora

...

titleSee content...

The problems I was having:

Windows/buttons/bars missing.

Frequent errors to where it would state something about SWT and recommend restarting Eclipse.

Window would go black and render Eclipse unusable until you quit and restart it.

Odd additional "DragPlaceholder" tabs added each and every time Eclipse would crash.

Below is the fix.

Whatever you use to execute eclipse, you have to add the following statement: export SWT_GTK3=0

moved to https://

...

cwiki.

...

apache.org/

...

I added that export line to the script I use to launch my Eclipse and it fixed all of my issues.

You have the choice of either adding it to your /usr/share/applications eclipse.desktop file:

Exec=env SWT_GTK3=0 /bin/eclipse

Or adding it to whatever script you use to launch eclipse, which in my case is:

#!/bin/bash

export ECLIPSE_HOME="/home/username/Programs/eclipse"

export SWT_GTK3=0

$ECLIPSE_HOME/eclipse $*

...

confluence/display/DAFFODIL/For+Contributors