Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Thondapu2016-03-16 14:29:52 +0000
committerArun Thondapu2016-03-16 14:29:52 +0000
commite0f0bc273f72d360ef5846768a328a01650ef980 (patch)
tree75010be501932789af34a7da9dd352d96572ed94
parent2dbf3c0de77b68f6fad4df00c21305db086564b7 (diff)
downloadrt.equinox.framework-e0f0bc273f72d360ef5846768a328a01650ef980.tar.gz
rt.equinox.framework-e0f0bc273f72d360ef5846768a328a01650ef980.tar.xz
rt.equinox.framework-e0f0bc273f72d360ef5846768a328a01650ef980.zip
Bug 489642 - 32 bit launcher on linux is "ELF 64-bit LSB"
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/gtk/build.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh b/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
index 4eaa0da3b..7ab22c555 100644
--- a/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
+++ b/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
@@ -233,6 +233,9 @@ elif [ "$defaultOSArch" = "s390x" ]; then
elif [ "$defaultOSArch" = "ia64" ]; then
M_ARCH=-mlp64
export M_ARCH
+elif [ "$defaultOSArch" = "x86" ]; then
+ M_ARCH=-m32
+ export M_ARCH
fi
LIBRARY_DIR="$EXEC_DIR/../org.eclipse.equinox.launcher.$defaultWS.$defaultOS.$defaultOSArch"

Back to the top