public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Anyone ever ever built Gnu32 GCC as cross compiler?
@ 1997-09-12 11:02 Cameron S. Thomas
  1997-09-13  3:18 ` Peter Dalgaard BSA
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Cameron S. Thomas @ 1997-09-12 11:02 UTC (permalink / raw)
  To: gnu-win32

Not sure if it's even possible, but anyone ever tried or done it? If so, so
what other platforms?

please don't ask why.
--
Cameron S. Thomas
csthomas@egsoftware.com
e.g. Software, Inc.
Tel: (503) 294-7025 x233
Fax: (503) 294-7130
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: Anyone ever ever built Gnu32 GCC as cross compiler?
  1997-09-12 11:02 Anyone ever ever built Gnu32 GCC as cross compiler? Cameron S. Thomas
@ 1997-09-13  3:18 ` Peter Dalgaard BSA
  1997-09-15  5:42 ` Kevin Dahlhausen
  1997-09-15  9:29 ` Cameron S. Thomas
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Dalgaard BSA @ 1997-09-13  3:18 UTC (permalink / raw)
  To: Cameron S. Thomas; +Cc: gnu-win32

"Cameron S. Thomas" <csthomas@egsoftware.com> writes:

> Not sure if it's even possible, but anyone ever tried or done it? If so, so
> what other platforms?
> 
> please don't ask why.

No need to...

Try digging this note out of the mailing list archives:
(or mail me for it, I just don't want to repost the whole thing) 

From: Ulrich Lauther <Ulrich.Lauther@mchp.siemens.de>
Subject: building Linux --> gnuwin32 crosscompiler
To: gnu-win32@cygnus.com
Date: Wed, 25 Jun 1997 11:57:25 +0200 (MET DST)


-- 
   O__  ---- Peter Dalgaard             Blegdamsvej 3  
  c/ /'_ --- Dept. of Biostatistics     2200 Cph. N   
 (*) \(*) -- University of Copenhagen   Denmark      Ph: (+45) 35327918
~~~~~~~~~~ - (p.dalgaard@biostat.ku.dk)             FAX: (+45) 35327907
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: Anyone ever ever built Gnu32 GCC as cross compiler?
  1997-09-12 11:02 Anyone ever ever built Gnu32 GCC as cross compiler? Cameron S. Thomas
  1997-09-13  3:18 ` Peter Dalgaard BSA
@ 1997-09-15  5:42 ` Kevin Dahlhausen
  1997-09-15  9:29 ` Cameron S. Thomas
  2 siblings, 0 replies; 4+ messages in thread
From: Kevin Dahlhausen @ 1997-09-15  5:42 UTC (permalink / raw)
  To: gnu-win32

> Subject:       Anyone ever ever built Gnu32 GCC as cross compiler?

> Not sure if it's even possible, but anyone ever tried or done it? If so, so
> what other platforms?

Yes, it was quite easy.  I use a Gnu-win32 version to cross compile for the
Hitachi H8/300H family.

I used the following script to kick off compilation of the 
cross-platform version of the cdk:

#/bin/sh
configure --host=i386-cygwin32 --prefix=/hitachi/cygwin32 --target=h8300-hms 
rm-rf ./make.log 
make  -k all info > ./make.log 
#i386-pc-cygwin32

(Where else can you get real C++ for embedded micros?!)
~~~~~~~~~~~~~~~~~~~ Kevin Dahlhausen ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Morse Controls                                   ap096@po.cwru.edu
"Do or do not.  There is no 'Try.' "  Yoda
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

* Re: Anyone ever ever built Gnu32 GCC as cross compiler?
  1997-09-12 11:02 Anyone ever ever built Gnu32 GCC as cross compiler? Cameron S. Thomas
  1997-09-13  3:18 ` Peter Dalgaard BSA
  1997-09-15  5:42 ` Kevin Dahlhausen
@ 1997-09-15  9:29 ` Cameron S. Thomas
  2 siblings, 0 replies; 4+ messages in thread
From: Cameron S. Thomas @ 1997-09-15  9:29 UTC (permalink / raw)
  To: gnu-win32

Cameron S. Thomas wrote:
> 
> Not sure if it's even possible, but anyone ever tried or done it? If so, so
> what other platforms?
 
Thanks to all who have responded to this query. A bit more info on my part
would be useful. What I am looking into doing is a port of a product *from NT*
to several unix hosts. The initial cut at the program will be an NT service,
with as much as the core code made as portable as possible. An idea introduced
to me was to use one of the client's many NT boxes to do all the devel, and
doing QA on the target platforms (as opposed to setting up a devlopment
environ for each machine). The idea was to use a set of tools (gnu, of course)
which could be configured to generate the proper target binaries, based on
make cl-switches. So Cygwin looks good. Ironically, the Cygnus Pro tools
aren't set up to do this - unless of course I took that source base and built
the cross compilers.

So if folks build the Win32 binaries on Linux, I outta be able to build
Solaris/Linux, et. al. binaries from Win32, correct? Using the b18 source
tree, I have managed to get gas and ld to compile for Solaris target, but
haver yet to get gcc to build cleanly. 

--
Cameron S. Thomas
csthomas@egsoftware.com
e.g. Software, Inc.
Tel: (503) 294-7025 x233
Fax: (503) 294-7130
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

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

end of thread, other threads:[~1997-09-15  9:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-09-12 11:02 Anyone ever ever built Gnu32 GCC as cross compiler? Cameron S. Thomas
1997-09-13  3:18 ` Peter Dalgaard BSA
1997-09-15  5:42 ` Kevin Dahlhausen
1997-09-15  9:29 ` Cameron S. Thomas

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).