diff options
author | Alexander Kurtakov | 2018-06-06 08:18:02 +0000 |
---|---|---|
committer | Alexander Kurtakov | 2018-06-06 08:19:28 +0000 |
commit | b7d8903644a26c2bb9393dbdc59250316de05ed7 (patch) | |
tree | 3e4a37fcd76c1f71a5b104f5a1fdb34e83f442e9 /bundles/org.eclipse.swt/Eclipse SWT PI/gtk | |
parent | 137459aa9b873954ba17bf2d124d208562b1d7f9 (diff) | |
download | eclipse.platform.swt-b7d8903644a26c2bb9393dbdc59250316de05ed7.tar.gz eclipse.platform.swt-b7d8903644a26c2bb9393dbdc59250316de05ed7.tar.xz eclipse.platform.swt-b7d8903644a26c2bb9393dbdc59250316de05ed7.zip |
Bug 518669 - Drop support for Linux ppc64 in 4.9
Remove build support and tests running setup for ppc64 in swt.
Change-Id: I488a6ce9398baca50a7fe1fdd4fa1163868fbf3d
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/gtk')
-rwxr-xr-x | bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh | 37 |
1 files changed, 6 insertions, 31 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh index b8766a661f..db3c0650fc 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh +++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh @@ -172,17 +172,6 @@ case $SWT_OS.$SWT_ARCH in export PKG_CONFIG_PATH="/usr/lib64/pkgconfig" fi ;; - "linux.ppc64") - if [ "${CC}" = "" ]; then - export CC=gcc - fi - if [ "${JAVA_HOME}" = "" ]; then - export JAVA_HOME=`readlink -f /usr/bin/java | sed "s:jre/bin/java::"` - fi - if [ "${PKG_CONFIG_PATH}" = "" ]; then - export PKG_CONFIG_PATH="/usr/lib64/pkgconfig/" - fi - ;; "linux.ppc64le") if [ "${CC}" = "" ]; then export CC=gcc @@ -205,35 +194,21 @@ case $SWT_OS.$SWT_ARCH in export PKG_CONFIG_PATH="/usr/lib64/pkgconfig" fi ;; - "aix.ppc64") - if [ "${CC}" = "" ]; then - export CC=gcc - fi - if [ "${JAVA_HOME}" = "" ]; then - export JAVA_HOME="/bluebird/teamswt/swt-builddir/JDKs/AIX/PPC64/j564/sdk" - fi - ;; esac # For 64-bit CPUs, we have a switch -if [ ${MODEL} = 'x86_64' -o ${MODEL} = 'ppc64' -o ${MODEL} = 'ia64' -o ${MODEL} = 's390x' -o ${MODEL} = 'ppc64le' -o ${MODEL} = 'aarch64' ]; then +if [ ${MODEL} = 'x86_64' -o ${MODEL} = 'ia64' -o ${MODEL} = 's390x' -o ${MODEL} = 'ppc64le' -o ${MODEL} = 'aarch64' ]; then SWT_PTR_CFLAGS=-DJNI64 if [ -d /lib64 ]; then XLIB64=-L/usr/X11R6/lib64 export XLIB64 fi - if [ ${MODEL} = 'ppc64' -o ${MODEL} = 'ppc64le' ]; then - if [ ${OS} = 'AIX' ]; then - SWT_PTR_CFLAGS="${SWT_PTR_CFLAGS} -maix64" - SWT_LFLAGS=-maix64 - export SWT_LFLAGS - else - SWT_PTR_CFLAGS="${SWT_PTR_CFLAGS} -m64" - XLIB64="${XLIB64} -L/usr/lib64" - SWT_LFLAGS=-m64 - export SWT_LFLAGS - fi + if [ ${MODEL} = 'ppc64le' ]; then + SWT_PTR_CFLAGS="${SWT_PTR_CFLAGS} -m64" + XLIB64="${XLIB64} -L/usr/lib64" + SWT_LFLAGS=-m64 + export SWT_LFLAGS fi export SWT_PTR_CFLAGS fi |