public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: "Paul Edwards" <mutazilah@gmail.com>
To: "Ulrich Weigand" <uweigand@de.ibm.com>
Cc: "Ulrich Weigand" <Ulrich.Weigand@de.ibm.com>, 	<gcc@gcc.gnu.org>
Subject: Re: i370 port - constructing compile script
Date: Thu, 22 Oct 2009 22:04:00 -0000	[thread overview]
Message-ID: <85E0DD6F65614AB7B95B6B6768D8FD80@Paullaptop> (raw)
In-Reply-To: <200910221803.n9MI33he012461@d12av02.megacenter.de.ibm.com>

Hi Ulrich.

I'll try out some of those things.  I have some initial
comments.

> Hmmm, the access() use probably needs to be guarded by a configure
> check.  Or else you might provide a MVS-specific implementation of
> "access" (if that is possible), and compile it into libiberty by
> providing an EXTRA_OFILES setting in a host makefile fragment;

Probably too many of them.  Just like open() etc in GCC main.
I'll see what can be faked up, now that I know those object files
are basically mandatory.

> in 3.4 these are set in config.table:
> case "${host}" in
>  rs6000-ibm-aix3.1 | rs6000-ibm-aix)
>                        frag=mh-aix ;;
>  *-*-cxux7*)           frag=mh-cxux7 ;;
>  *-*-freebsd2.1.*)     frag=mh-fbsd21 ;;
>  *-*-freebsd2.2.[012]) frag=mh-fbsd21 ;;
>  i370-*-opened*)       frag=mh-openedition ;;
>  i[34567]86-*-windows*)        frag=mh-windows ;;
> esac
> 
> As to the pex-unix.c, you certainly should provide a MVS-specific
> version of the PEX callbacks.  They are selected in configure.ac:
> 
> # Figure out which version of pexecute to use.
> case "${host}" in
>     *-*-mingw* | *-*-winnt*)   pexecute=pex-win32.o  ;;
>     *-*-msdosdjgpp*)           pexecute=pex-djgpp.o  ;;
>     *-*-msdos*)                pexecute=pex-msdos.o  ;;
>     *-*-os2-emx*)              pexecute=pex-os2.o    ;;
>     *)                         pexecute=pex-unix.o   ;;
> esac

Ok, thanks.

> Your MVS version might be just a dummy that always fails.

Ok.

> Even better would be a version that actually works; in this
> case all the "single-exectuable" hacks would become superfluous.

Having a single executable, especially in my environment where
only assembler code is ever generated, has its own merits even if
a working system() can be done in the future.

> Note that e.g. pex-msdos.c implements the required callbacks
> solely in terms of the C99 "system" routine.  If you at least
> have this facility available on MVS, you might be able to just
> use the msdos version?

I don't have a working system that can execute another C program
yet.  Note that C90 leaves the behaviour of system() as
"implementation defined".  Well, on my system, I can do a system()
to call some simple programs that clear the screen.  In one
environment on my system, anyway.  :-)

>> Finally, even with this in place, the build process stopped at
>> the next roadblock.  The file "genmodes.c" couldn't be
>> compiled.  I was surprised to see that it was being compiled
>> with i370-mvspdp-gcc.  The genmodes "needs" to be run on
>> Unix still.  It's only the source code that IT generates that
>> needs to be cross-compiled.
> 
> If this happens, then something went very wrong during configure.
> Did you make sure to use the proper build / host / target flags?
> In particular, the --build= configure argument must be present
> and refer to the build architecture.  This is used to determine
> which architecture to build the generator programs for.

Yes, I have all 3 specified, with --build of i686-linux.  Now that I
know that the generator files are meant to be built with the i686
gcc, I'll try to find out where it's picking that up from.

BFN.  Paul.

  reply	other threads:[~2009-10-22 18:26 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <OF0A51B575.29A29744-ON42257656.0067E35B-42257656.00682411@de.ibm.com>
2009-10-22  9:06 ` Paul Edwards
2009-10-22 19:26   ` Ulrich Weigand
2009-10-22 22:04     ` Paul Edwards [this message]
2009-10-23 14:36     ` Paul Edwards
2009-10-23 14:58       ` Ian Lance Taylor
2009-10-23 15:16       ` Ulrich Weigand
2009-10-24  0:20         ` Paul Edwards
2009-10-24  4:11           ` Ulrich Weigand
2009-10-27 12:18             ` Paul Edwards
2009-11-02 14:45 Paul Edwards
  -- strict thread matches above, loose matches on Subject: below --
2009-09-25 15:20 i370 port Ulrich Weigand
2009-09-30 17:24 ` i370 port - constructing compile script Paul Edwards
2009-09-30 17:36   ` Richard Henderson
2009-09-30 21:40     ` Paul Edwards
     [not found]       ` <mcrpr98x9w8.fsf@dhcp-172-17-9-151.mtv.corp.google.com>
2009-10-01  0:16         ` Joseph S. Myers
2009-10-01 14:00           ` Paul Edwards
2009-10-02 12:41           ` Paul Edwards
2009-10-02 16:00             ` Ian Lance Taylor
2009-10-02 22:53               ` Paul Edwards
2009-10-04  4:11                 ` Ian Lance Taylor
2009-10-04  5:14                   ` Paul Edwards
2009-10-04  6:04                     ` Ian Lance Taylor
2009-10-04  6:50                       ` Paul Edwards
2009-10-04 15:38                         ` Ulrich Weigand
2009-10-04 22:51                           ` Paul Edwards
2009-10-05 13:15                             ` Ulrich Weigand
2009-10-06  9:32                               ` Paul Edwards
2009-10-06 13:15                                 ` Ulrich Weigand
2009-10-06 13:38                                   ` Paul Edwards
2009-10-06 14:01                                     ` Ulrich Weigand
2009-10-14 14:33                                       ` Paul Edwards
2009-10-19 14:19                               ` Paul Edwards
2009-10-19 17:37                                 ` Ulrich Weigand
2009-10-20 14:18                                   ` Paul Edwards
2009-10-20 15:30                                     ` Ulrich Weigand
2009-11-12 14:03                                   ` Paul Edwards
2009-11-12 20:06                                     ` Ralf Wildenhues
2009-11-12 20:56                                       ` Paul Edwards
2009-11-13 11:43                                       ` Paul Edwards
2009-11-13 12:01                                         ` Ulrich Weigand
2009-11-13 12:18                                           ` Paul Edwards
2009-11-13 12:57                                             ` Ulrich Weigand
2009-11-14  8:52                                               ` Paul Edwards
2009-11-14 10:49                                                 ` Ralf Wildenhues
2009-11-14 11:28                                                   ` Paul Edwards
2009-11-22  0:51                                                     ` Paolo Bonzini
2009-11-18 10:51                                                   ` Paul Edwards
2009-11-19 14:27                                                     ` Ulrich Weigand
2009-11-21 13:40                                                       ` Paul Edwards
2009-11-22  0:46                                         ` Paolo Bonzini
2009-11-13 12:08                                     ` Ulrich Weigand
2009-10-05 13:17                         ` Michael Matz
2009-10-05 13:38                           ` Paul Edwards
2009-10-05 13:46                             ` Michael Matz
2009-10-01 14:28   ` Paul Brook
2009-10-01 16:00     ` Paul Edwards
2009-10-01 18:36       ` Ian Lance Taylor
2009-10-01 23:43         ` Paul Edwards
2009-10-01 21:10       ` David Edelsohn
2009-10-01 22:22         ` Toon Moene
2009-10-02  0:19           ` Paul Edwards

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=85E0DD6F65614AB7B95B6B6768D8FD80@Paullaptop \
    --to=mutazilah@gmail.com \
    --cc=Ulrich.Weigand@de.ibm.com \
    --cc=gcc@gcc.gnu.org \
    --cc=uweigand@de.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).