diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-11-30 15:58:34 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-11-30 15:58:34 +0000 |
commit | 667a2bccc28ffcad2cddb4b4cd1085382c521f50 (patch) | |
tree | 0ed54fb79abff9109aca23036b70613a5213a424 /community/gcc6/310-build-gcj-s390x.patch | |
parent | 5a2238501aacaf1b6c86507ac383022e1b09450e (diff) | |
download | aports-667a2bccc28ffcad2cddb4b4cd1085382c521f50.tar.bz2 aports-667a2bccc28ffcad2cddb4b4cd1085382c521f50.tar.xz |
community/gcc6: move from testing
needed too bootstrap openjdk7
Diffstat (limited to 'community/gcc6/310-build-gcj-s390x.patch')
-rw-r--r-- | community/gcc6/310-build-gcj-s390x.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/gcc6/310-build-gcj-s390x.patch b/community/gcc6/310-build-gcj-s390x.patch new file mode 100644 index 0000000000..1e522ee152 --- /dev/null +++ b/community/gcc6/310-build-gcj-s390x.patch @@ -0,0 +1,28 @@ +From 697a7ba791fce2ffab2ed723d909a89684019e3d Mon Sep 17 00:00:00 2001 +From: "Tuan M. Hoang" <tmhoang@flatglobe.org> +Date: Sun, 19 Feb 2017 17:03:33 +0000 +Subject: [PATCH] main/gcc : when building gcc-java on s390x, libgcj.so + complains about undefined reference to __data_start. Using + SEARCH_FOR_DATA_START instead solved it. Credit to Andrew Haley at RedHat. + +--- + boehm-gc/include/private/gcconfig.h | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/boehm-gc/include/private/gcconfig.h b/boehm-gc/include/private/gcconfig.h +index 4ca6a80..a15fff6 100644 +--- a/boehm-gc/include/private/gcconfig.h ++++ b/boehm-gc/include/private/gcconfig.h +@@ -1837,8 +1837,7 @@ + # define OS_TYPE "LINUX" + # define LINUX_STACKBOTTOM + # define DYNAMIC_LOADING +- extern int __data_start[]; +-# define DATASTART ((ptr_t)(__data_start)) ++# define SEARCH_FOR_DATA_START + extern int _end[]; + # define DATAEND (_end) + # define CACHE_LINE_SIZE 256 +-- +2.11.1 + |