public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Introducing support for cross compiling/linking for the z/OS platform
@ 2020-01-26 11:43 David Lanzenörfer
  2020-01-26 11:43 ` [PATCH 2/2] z/OS support: Introducing z/OS support David Lanzenörfer
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: David Lanzenörfer @ 2020-01-26 11:43 UTC (permalink / raw)
  To: binutils; +Cc: David Lanzendörfer

From: David Lanzendörfer <leviathan@libresilicon.com>

Dear mailing list

I've been refurbishing the work from Ambitus, an attempt by the Linux Foundation to
support cross compiling for the z/OS mainframe platform with GCC.

The following two patches are needed to create executable headers which allows to
execute binaries on the z/OS platform.

Patchsets for GCC itself will follow soon on the GCC developer mailing list,
since I'm still cleaning up and debugging those.

Linking however already works without any issues, so I already submit those.

David Lanzendörfer (2):
  z/OS Support: Catching segfaults
  z/OS support: Introducing z/OS support

 bfd/bfd-in2.h               |    1 +
 bfd/config.bfd              |    5 +
 bfd/configure               |    1 +
 bfd/configure.ac            |    1 +
 bfd/linker.c                |    2 +-
 bfd/po-bfd.h                |   93 ++
 bfd/po64-s390.c             | 1697 +++++++++++++++++++++++++++++++++++
 bfd/targets.c               |    1 +
 config.sub                  |    6 +-
 gas/configure.tgt           |    1 +
 include/po/common.h         |  167 ++++
 include/po/external.h       |  324 +++++++
 include/po/internal.h       |  187 ++++
 ld/Makefile.am              |    7 +-
 ld/Makefile.in              |    8 +-
 ld/configure.tgt            |    3 +
 ld/emulparams/po64_s390.sh  |  109 +++
 ld/ldlang.c                 |    4 +
 ld/scripttempl/po64_s390.sc |   12 +
 19 files changed, 2625 insertions(+), 4 deletions(-)
 create mode 100644 bfd/po-bfd.h
 create mode 100644 bfd/po64-s390.c
 create mode 100644 include/po/common.h
 create mode 100644 include/po/external.h
 create mode 100644 include/po/internal.h
 create mode 100644 ld/emulparams/po64_s390.sh
 create mode 100644 ld/scripttempl/po64_s390.sc

-- 
2.25.0

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PATCH 0/2] Introducing support for cross compiling/linking for the z/OS platform
@ 2020-01-26 11:38 David Lanzenörfer
  2020-01-26 15:50 ` David Lanzendörfer
  0 siblings, 1 reply; 9+ messages in thread
From: David Lanzenörfer @ 2020-01-26 11:38 UTC (permalink / raw)
  To: binutils; +Cc: David Lanzendörfer

From: David Lanzendörfer <leviathan@libresilicon.com>

Dear mailing list

Please discard the last patchset, this one is the correct one ^^'
The file bfd/po-s390.h is of course not needed and has slipped in from a rebased
old patchset.

I've been refurbishing the work from Ambitus, an attempt by the Linux Foundation to
support cross compiling for the z/OS mainframe platform with GCC.

The following two patches are needed to create executable headers which allows to
execute binaries on the z/OS platform.

Patchsets for GCC itself will follow soon on the GCC developer mailing list,
since I'm still cleaning up and debugging those.

Linking however already works without any issues, so I already submit those.

David Lanzendörfer (2):
  z/OS Support: Catching segfaults
  z/OS support: Introducing z/OS support

 bfd/bfd-in2.h               |    1 +
 bfd/config.bfd              |    5 +
 bfd/configure               |    1 +
 bfd/configure.ac            |    1 +
 bfd/linker.c                |    2 +-
 bfd/po-bfd.h                |   93 ++
 bfd/po64-s390.c             | 1697 +++++++++++++++++++++++++++++++++++
 bfd/targets.c               |    1 +
 config.sub                  |    6 +-
 gas/configure.tgt           |    1 +
 include/po/common.h         |  167 ++++
 include/po/external.h       |  324 +++++++
 include/po/internal.h       |  187 ++++
 ld/Makefile.am              |    7 +-
 ld/Makefile.in              |    8 +-
 ld/configure.tgt            |    3 +
 ld/emulparams/po64_s390.sh  |  109 +++
 ld/ldlang.c                 |    4 +
 ld/scripttempl/po64_s390.sc |   12 +
 19 files changed, 2625 insertions(+), 4 deletions(-)
 create mode 100644 bfd/po-bfd.h
 create mode 100644 bfd/po64-s390.c
 create mode 100644 include/po/common.h
 create mode 100644 include/po/external.h
 create mode 100644 include/po/internal.h
 create mode 100644 ld/emulparams/po64_s390.sh
 create mode 100644 ld/scripttempl/po64_s390.sc

-- 
2.25.0

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PATCH 0/2] Introducing support for cross compiling/linking for the z/OS platform
@ 2020-01-26 11:33 David Lanzenörfer
  2020-01-26 15:50 ` David Lanzendörfer
  0 siblings, 1 reply; 9+ messages in thread
From: David Lanzenörfer @ 2020-01-26 11:33 UTC (permalink / raw)
  To: binutils; +Cc: David Lanzendörfer

From: David Lanzendörfer <leviathan@libresilicon.com>

Dear mailing list

I've been refurbishing the work from Ambitus, an attempt by the Linux Foundation to
support cross compiling for the z/OS mainframe platform with GCC.

The following two patches are needed to create executable headers which allows to
execute binaries on the z/OS platform.

Patchsets for GCC itself will follow soon on the GCC developer mailing list,
since I'm still cleaning up and debugging those.

Linking however already works without any issues, so I already submit those.

David Lanzendörfer (2):
  z/OS support: Introducing z/OS support
  z/OS Support: Catching segfaults

 bfd/bfd-in2.h               |    1 +
 bfd/config.bfd              |    5 +
 bfd/configure               |    1 +
 bfd/configure.ac            |    1 +
 bfd/linker.c                |    2 +-
 bfd/po-bfd.h                |   92 ++
 bfd/po-s390.h               |    0
 bfd/po64-s390.c             | 1697 +++++++++++++++++++++++++++++++++++
 bfd/targets.c               |    1 +
 config.sub                  |    6 +-
 gas/configure.tgt           |    1 +
 include/po/common.h         |  166 ++++
 include/po/external.h       |  323 +++++++
 include/po/internal.h       |  186 ++++
 ld/Makefile.am              |    7 +-
 ld/Makefile.in              |    8 +-
 ld/configure.tgt            |    3 +
 ld/emulparams/po64_s390.sh  |  109 +++
 ld/ldlang.c                 |    4 +
 ld/scripttempl/po64_s390.sc |   12 +
 20 files changed, 2621 insertions(+), 4 deletions(-)
 create mode 100644 bfd/po-bfd.h
 create mode 100644 bfd/po-s390.h
 create mode 100644 bfd/po64-s390.c
 create mode 100644 include/po/common.h
 create mode 100644 include/po/external.h
 create mode 100644 include/po/internal.h
 create mode 100644 ld/emulparams/po64_s390.sh
 create mode 100644 ld/scripttempl/po64_s390.sc

-- 
2.25.0

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2020-02-10 15:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-26 11:43 [PATCH 0/2] Introducing support for cross compiling/linking for the z/OS platform David Lanzenörfer
2020-01-26 11:43 ` [PATCH 2/2] z/OS support: Introducing z/OS support David Lanzenörfer
2020-01-26 11:43 ` [PATCH 1/2] z/OS Support: Catching segfaults David Lanzenörfer
2020-02-10 15:49 ` [PATCH 0/2] Introducing support for cross compiling/linking for the z/OS platform Nick Clifton
  -- strict thread matches above, loose matches on Subject: below --
2020-01-26 11:38 David Lanzenörfer
2020-01-26 15:50 ` David Lanzendörfer
2020-01-26 11:33 David Lanzenörfer
2020-01-26 15:50 ` David Lanzendörfer
2020-01-26 23:46   ` Hans-Peter Nilsson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).