This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Convert 3.2 sources to ISO C90
- From: Joe Buck <Joe dot Buck at synopsys dot com>
- To: mrs at windriver dot com (mike stump)
- Cc: dewar at gnat dot com, law at redhat dot com, Joe dot Buck at synopsys dot COM,gcc at gcc dot gnu dot org, rra at stanford dot edu
- Date: Fri, 7 Jun 2002 13:45:31 -0700 (PDT)
- Subject: Re: Convert 3.2 sources to ISO C90
> > So, where did you host the cross compiler? If it was anything other than
> > hpux, how did you assemble and link binaries given there is no cross
> > assembler or cross linker support for hpux?
Mike Stump writes:
> One can cross the assembler and ld without much trouble. One just
> does:
>
> #!/bin/sh
> # copy files to remote machine
> rsh hp_machine /bin/as $@
> # copy files from remote machine
With common NFS mounts, you don't even need the copying, though you do
need to set the correct current directory (rsh will start the process
in the user's home directory by default).