Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-dev] Eclipse Platform Build
  • From: Vishnu Sarath <vishnu.sarath@xxxxxxxxxxx>
  • Date: Thu, 1 Jun 2023 06:19:49 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=ashling.com; dmarc=pass action=none header.from=ashling.com; dkim=pass header.d=ashling.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=nVmYcCACPNqYGeRrRN0oYkVMEcuivQKwrR1Lo9p0vlE=; b=E+J96y0v5E8dZRqfDVYlaDsTozOtMUQSvDglrWFl2jCgt55vGdfVHHNBtWX0wZsUrUhU3xr4P+G+IUqts/RQLUE0dOgkZNrGiSUCznu8zwaXKw16Aj6jjCJ/YfBFdZsM/UVcLQUK01gdPu0OelHTu6ATlnKLINYmZ8+ALq6sx84iqFAFbhKVnqANRC8Zz9TvpA0KmqIh6IhU9jlyX7Vx9Iz8lHQw5hdQyyVt71bMklv82mPUsANbmym4vk5aEcLM+AeR48yvTCIoLW0Ci3OJ0K9eEFTezbOenLV39nAwpA902LPZJ4ZTgjCAIBWQPvYuDBb+OyYCPQZ8nz8gsEzWUw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=Mdqa4q0ZUcs+GmXOWklwsqDNuujSteFzm17g3X6p1nfUAcf+mMWZ0nuRPWotI+L0NtARA5y9ELrboiVgYFCgqhglAgMcTvIyeDrf6kGZ0QA5vdph7acgcbI1x3uB9Kai12oivKBy+LAz3a41I/X13fL9May57gXVhvyYszhqRMUdvFiyUB3DbQf6UbzkGZlmiqHGkbBFyD8gC3TX4OtgLReEstXv8rP2ifTxcw3gn6sF7bECNyZibl8JQez53oSKR4GprqHK/1YNlYthO1NMWZaWNNEBIAiHWTi1aEam4tPls/zkqzLBhRlBBh1N8oA6HpM1kwS4HqaMizbDhz2uWA==
  • Delivered-to: platform-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/platform-dev/>
  • List-help: <mailto:platform-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/platform-dev>, <mailto:platform-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/platform-dev>, <mailto:platform-dev-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AdmNdefGHdWlhfZgRa6AdbAaAQaQiAACGEmgACV4XxAAAL7LgAAtu4UAAV/If9AAALImcA==
  • Thread-topic: [platform-dev] Eclipse Platform Build

Thanks @mistria@xxxxxxxxxx for the detailed mail. I was trying out the things mentioned.

 

Please see the below steps I tried:

 

  • Setup a Fedora38 VM.
  • We suspect this commit https://github.com/eclipse-platform/eclipse.platform.swt/commit/d8e3f297ffde54412d935db7dde31d276b58b635#diff-874667bd88035dc47251befdad240fb5cf39f7db50597060fe17c2ecb6082de5 (which was done to make 3.22 GTK version as minimum), as the cause of the crash issue we are seeing (not sure, need to confirm). The crash occurs when we are right clicking (when trying to show a pop up menu) - getting gtk_menu_popup_at_pointer undefined symbol. Since this may not be present in gtk4. Earlier we used to have a separate handling if the gtk version was less than 3.22. I tried to add the removed native call and changes in Menu.java. And created the .so files with building in Fedora38 VM (Glibc 2.37).
  • But when I am using this .so files in the product and trying to launch the product in SUSE12 SP5, the launch itself is failing. When I tried find the root cause (adding some logs) I got the below error:

/home/testuser/Downloads/testProduct/testProduct -linux.gtk.x86_64/configuration/org.eclipse.osgi/277/0/.cp/libswt-pi3-gtk-4960r6.so: /lib64/libc.so.6: version `GLIBC_2.34' not found (required by /home/ testuser/Downloads/ testProduct / testProduct -linux.gtk.x86_64/configuration/org.eclipse.osgi/277/0/.cp/libswt-pi3-gtk-4960r6.so)

               It’s expecting Glibc version above 2.34 while the SUSE12 is having 2.22 by default.

 

I am a bit new to this, so could someone please guide me on how to fix this. Is this issue because I am using a wrong platform (with higher version of Glibc 2.37 for building). What is the ideal platform which we are using to generate swt .so files for linux gtk.

 

Thanks,

Vishnu

 

From: Mickael Istria <mistria@xxxxxxxxxx>
Sent: Wednesday, May 24, 2023 1:40 PM
To: Eclipse platform general developers list. <platform-dev@xxxxxxxxxxx>
Cc: Vinod Appu <vinod.appu@xxxxxxxxxxx>
Subject: Re: [platform-dev] Eclipse Platform Build

 

Hi,

 

Please see https://wiki.eclipse.org/Platform-releng/Platform_Build for explanation of how to build the Eclipse Platform and https://github.com/eclipse-platform/eclipse.platform.swt/wiki/Devel-GTK-Dev-guide for particular GTK stuff.

The version of SWT was bumped by +0.1.0 during last cycle, which means it has new APIs and some bundles are probably consuming those new API; so by auditing the version, it seems like the combination you wish to achieve (latest platform with old SWT) is then not possible.

With the link above and good knowledge of Maven, Tycho and PDE, you may be able to hack something to enforce another locally built version of SWT, but overall it will be annoying and difficult for questionable value. If you can make a PR that fixes https://github.com/eclipse-platform/eclipse.platform/issues/212 while still working with supported environments, there are chances that it get merged and than part of the official build. This is IMO the most profitable path forward, although it's not certain it can work.

Note that if you're stuck in an environment that is not supported anymore, you may consider alternative distributions of Eclipse IDE, such as Flatpak one; with such container-like installations, most libs -including GTK- are supposed to be included in a compatible way. https://flathub.org/apps/org.eclipse.Java .

HTH

Mickael


Back to the top