0

我正在尝试在我的主机上执行 WindRiver 工作台。但是,它崩溃了,日志文件如下所示。

我电脑上当前安装的java版本:

java version "1.7.0_79"
OpenJDK Runtime Environment (IcedTea 2.5.5) (7u79-2.5.5-0ubuntu0.14.04.2)
OpenJDK 64-Bit Server VM (build 24.79-b02, mixed mode)

我怀疑这是由Java版本引起的。

如果您知道如何解决,请告诉我

ON 2015-08-25 18:56:33.830 -----------------------------------------------
eclipse.buildId=M20130131-0800/WB20141023-0742
java.version=1.6.0_21
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=en_US
Command-line arguments:  -os linux -ws gtk -arch x86

!ENTRY org.eclipse.osgi 4 0 2015-08-25 18:57:02.301
!MESSAGE Application error
!STACK 1
java.lang.UnsatisfiedLinkError: com.windriver.core.runtime.jni.Env.setEnv(Ljava/lang/String;Ljava/lang/String;)I
    at com.windriver.core.runtime.jni.Env.setEnv(Native Method)
    at com.windriver.ide.common.core.installregistry.WREnv.setSystemEnv(WREnv.java:805)
    at com.windriver.ide.common.core.installregistry.WRInstallRegistry.initWorkbenchEnvironment(WRInstallRegistry.java:631)
    at com.windriver.ide.common.core.installregistry.WRInstallRegistry.init(WRInstallRegistry.java:484)
    at com.windriver.ide.common.core.installregistry.WRInstallRegistry.getInstance(WRInstallRegistry.java:550)
    at com.windriver.ide.application.UnifiedSWTSwingApplication.checkPreconditions(UnifiedSWTSwingApplication.java:148)
    at com.windriver.ide.application.CopyOfIDEApplication.start(CopyOfIDEApplication.java:136)
    at com.windriver.ide.application.UnifiedSWTSwingApplication.access$2(UnifiedSWTSwingApplication.java:1)
    at com.windriver.ide.application.UnifiedSWTSwingApplication.start(UnifiedSWTSwingApplication.java:70)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1438)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1414)
    at org.eclipse.equinox.launcher.WRWBMain.main(WRWBMain.java:37)
!SESSION 2015-08-25 18:57:09.758-----------------------------------------------

我怀疑这是因为我的 Workbench 是 32 位,而我的主机是 64 位。

请问有什么意见吗?

4

3 回答 3

3

我在 Arch Linux 64 位上遇到了同样的错误。

问题在于:

/<workbench_install_dir>/workbench-<your_version>/wrwb/wrworkbench/eclipse/plugins/com.windriver.core.runtime.jni_3.3.0.20110216-1702.jar

它需要特定于平台的版本(在本例中为 linux)com.windriver.core.runtime.jni.linux_3.3.0.20110216-1702.jar(在同一目录中找到)。
解压 linux 特定的 jar 将显示库“libstdutil.so”。需要检查此库是否缺少依赖项和安装的缺少的 32 位库。

例子:

mkdir /tmp/wbtmp && cd /tmp/wbtmp
jar -xf /home/testuser/workbench/workbench-3.3/wrwb/wrworkbench/eclipse/plugins/com.windriver.core.runtime.jni.linux_3.3.0.20110216-1702.jar
cd os/linux/x86/
ldd libstdutil.so

需要检查 ldd 命令的输出中是否有任何标记为“未找到”的库以及已安装的那些库。就我而言,我错过了 libpangox-1.0.so.0。

于 2016-02-26T17:05:09.297 回答
1

我在使用WorkBench时遇到了同样的错误。我也在 Ubuntu 14.x 64 位上运行。

似乎在 Ubuntu 13.x 和 14.x 之间删除了软件包。

我安装了这些软件包,我的 WorkBench 现在加载:

sudo apt-get install libgtk2.0-0:i386
sudo apt-get install libxtst-dev
sudo apt-get install libxtst-dev:i386
sudo apt-get install gtk2-engines-murrine:i386
sudo apt-get install lib32stdc++6
sudo apt-get install libxpm4:i386
sudo apt-get install libuuid1:i386 
于 2015-08-28T20:08:59.720 回答
0

对于因为在 CentOS 7 上使用旧 WindRiver 系统而遇到此问题的任何人,您可能需要这样做:

  • 根据@bogdan-paun 的回答,确认您缺少 libpangox-1.0.so.0
  • 下载 pangox-compat 的源 RPM
  • 使用 CentOSmock工具(从 centos-extra 下载版本,而不是从 EPEL 下载版本)来构建这个库的 32 位版本(centos-7-i386 root)
  • 在您的 CentOS 7 系统上,安装您刚刚构建的 pangox-compat i686 RPM
  • 现在您的 WindRiver WorkBench 系统应该可以工作了。
于 2021-01-08T19:49:12.537 回答