public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* how to make a cross compiler for cygwin?
@ 1999-06-08  2:21 Raju K. V.
  1999-06-08  2:28 ` Aldo Mazzilli
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Raju K. V. @ 1999-06-08  2:21 UTC (permalink / raw)
  To: cygwin

hi,

What are the steps for making  a cross compiler for cygwin?

Thanks,
Raju


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* Re: how to make a cross compiler for cygwin?
  1999-06-08  2:21 how to make a cross compiler for cygwin? Raju K. V.
@ 1999-06-08  2:28 ` Aldo Mazzilli
  1999-06-30 22:10   ` Aldo Mazzilli
  1999-06-08  8:04 ` Mumit Khan
  1999-06-30 22:10 ` Raju K. V.
  2 siblings, 1 reply; 10+ messages in thread
From: Aldo Mazzilli @ 1999-06-08  2:28 UTC (permalink / raw)
  To: Raju K. V.; +Cc: cygwin

Hi Raju,

You can find a lot of informations in the crossgcc FAQ at :
http://www.objsw.com/CrossGCC/

Good chance !!

-- 
=======================================================================
,',',',',',',' Aldo MAZZILLI             | INRIA Rhone-Alpes          |
,',',',',',',' aldo.mazzilli@inrialpes.fr| 655, avenue de l'Europe    |
,',',',',',',' Tel : 04 76 61 53 91      | 38330 Montbonnot St Martin |
,',',',',',',' Fax : 04 76 61 52 52      | FRANCE                     |
,',' *** Site WEB : http://www.inrialpes.fr/vasy/people/Aldo.Mazzilli |
=======================================================================

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* Re: how to make a cross compiler for cygwin?
  1999-06-08  2:21 how to make a cross compiler for cygwin? Raju K. V.
  1999-06-08  2:28 ` Aldo Mazzilli
@ 1999-06-08  8:04 ` Mumit Khan
  1999-06-08  8:30   ` MFC VC++ mail list? (no spam intended) David Young
  1999-06-30 22:10   ` how to make a cross compiler for cygwin? Mumit Khan
  1999-06-30 22:10 ` Raju K. V.
  2 siblings, 2 replies; 10+ messages in thread
From: Mumit Khan @ 1999-06-08  8:04 UTC (permalink / raw)
  To: Raju K. V.; +Cc: cygwin

"Raju K. V." <rajukv@wipinfo.soft.net> writes:
> hi,
> 
> What are the steps for making  a cross compiler for cygwin?
> 

In the future, please search the mailing list first. This and many
other questions are answered there.

See http://www.xraylith.wisc.edu/~khan/software/gnu-win32/ for howto
on building cross-compiler for cygwin.

Regards,
Mumit


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* MFC VC++ mail list? (no spam intended)
  1999-06-08  8:04 ` Mumit Khan
@ 1999-06-08  8:30   ` David Young
  1999-06-08  9:10     ` Mumit Khan
  1999-06-30 22:10     ` David Young
  1999-06-30 22:10   ` how to make a cross compiler for cygwin? Mumit Khan
  1 sibling, 2 replies; 10+ messages in thread
From: David Young @ 1999-06-08  8:30 UTC (permalink / raw)
  To: cygwin

hey there,

cygwin is great. However, I also need to do MFC and VC++.
Does anyone know of a mail list to ask questions for that technology?

Also, last I checked the egcs compiler produced vtables and/or mangled names  
differently than VC++ (excluding decl type issues). Does anyone know if that  
is still true? i.e.: can I mix and match C++ classes w/ virtual functions  
defined while using dlls generated with egcs and MS VC++?

Your knowledgeable answers are appreciated.

Thanks A Bunch! David Young; VVI-DCS
dyoung@vvi.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* Re: MFC VC++ mail list? (no spam intended)
  1999-06-08  8:30   ` MFC VC++ mail list? (no spam intended) David Young
@ 1999-06-08  9:10     ` Mumit Khan
  1999-06-30 22:10       ` Mumit Khan
  1999-06-30 22:10     ` David Young
  1 sibling, 1 reply; 10+ messages in thread
From: Mumit Khan @ 1999-06-08  9:10 UTC (permalink / raw)
  To: dyoung; +Cc: cygwin

David Young <dyoung@vviuh221.vvi.com> writes:
> 
> cygwin is great. However, I also need to do MFC and VC++.
> Does anyone know of a mail list to ask questions for that technology?

I'm sure Microsoft provides many different forums for this. Look at 
their website. This is definitely not the right place.

> 
> Also, last I checked the egcs compiler produced vtables and/or mangled names 
>  
> differently than VC++ (excluding decl type issues). Does anyone know if that 
>  
> is still true? i.e.: can I mix and match C++ classes w/ virtual functions  
> defined while using dlls generated with egcs and MS VC++?

As you note, VC++ and G++ use different vtable layout, and the chances of
these two being compatible anytime in the near future is infinitesimally
small. You could ask Microsoft to provide a G++ compatible vtable layout.
They're supposed to be good at listening to customers ;-)

You cannot mix VC++ with GCC, Sorry.

The hope in the near term is to use COM objects and that should work. The
work on GCC to support COM objects from C++ is being worked on right now.
The other (non)solution is to use "C" linkage, but that pretty much defeats
the purpose of using C++.

Regards,
Mumit


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* Re: MFC VC++ mail list? (no spam intended)
  1999-06-08  9:10     ` Mumit Khan
@ 1999-06-30 22:10       ` Mumit Khan
  0 siblings, 0 replies; 10+ messages in thread
From: Mumit Khan @ 1999-06-30 22:10 UTC (permalink / raw)
  To: dyoung; +Cc: cygwin

David Young <dyoung@vviuh221.vvi.com> writes:
> 
> cygwin is great. However, I also need to do MFC and VC++.
> Does anyone know of a mail list to ask questions for that technology?

I'm sure Microsoft provides many different forums for this. Look at 
their website. This is definitely not the right place.

> 
> Also, last I checked the egcs compiler produced vtables and/or mangled names 
>  
> differently than VC++ (excluding decl type issues). Does anyone know if that 
>  
> is still true? i.e.: can I mix and match C++ classes w/ virtual functions  
> defined while using dlls generated with egcs and MS VC++?

As you note, VC++ and G++ use different vtable layout, and the chances of
these two being compatible anytime in the near future is infinitesimally
small. You could ask Microsoft to provide a G++ compatible vtable layout.
They're supposed to be good at listening to customers ;-)

You cannot mix VC++ with GCC, Sorry.

The hope in the near term is to use COM objects and that should work. The
work on GCC to support COM objects from C++ is being worked on right now.
The other (non)solution is to use "C" linkage, but that pretty much defeats
the purpose of using C++.

Regards,
Mumit


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* Re: how to make a cross compiler for cygwin?
  1999-06-08  2:28 ` Aldo Mazzilli
@ 1999-06-30 22:10   ` Aldo Mazzilli
  0 siblings, 0 replies; 10+ messages in thread
From: Aldo Mazzilli @ 1999-06-30 22:10 UTC (permalink / raw)
  To: Raju K. V.; +Cc: cygwin

Hi Raju,

You can find a lot of informations in the crossgcc FAQ at :
http://www.objsw.com/CrossGCC/

Good chance !!

-- 
=======================================================================
,',',',',',',' Aldo MAZZILLI             | INRIA Rhone-Alpes          |
,',',',',',',' aldo.mazzilli@inrialpes.fr| 655, avenue de l'Europe    |
,',',',',',',' Tel : 04 76 61 53 91      | 38330 Montbonnot St Martin |
,',',',',',',' Fax : 04 76 61 52 52      | FRANCE                     |
,',' *** Site WEB : http://www.inrialpes.fr/vasy/people/Aldo.Mazzilli |
=======================================================================

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* MFC VC++ mail list? (no spam intended)
  1999-06-08  8:30   ` MFC VC++ mail list? (no spam intended) David Young
  1999-06-08  9:10     ` Mumit Khan
@ 1999-06-30 22:10     ` David Young
  1 sibling, 0 replies; 10+ messages in thread
From: David Young @ 1999-06-30 22:10 UTC (permalink / raw)
  To: cygwin

hey there,

cygwin is great. However, I also need to do MFC and VC++.
Does anyone know of a mail list to ask questions for that technology?

Also, last I checked the egcs compiler produced vtables and/or mangled names  
differently than VC++ (excluding decl type issues). Does anyone know if that  
is still true? i.e.: can I mix and match C++ classes w/ virtual functions  
defined while using dlls generated with egcs and MS VC++?

Your knowledgeable answers are appreciated.

Thanks A Bunch! David Young; VVI-DCS
dyoung@vvi.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* Re: how to make a cross compiler for cygwin?
  1999-06-08  8:04 ` Mumit Khan
  1999-06-08  8:30   ` MFC VC++ mail list? (no spam intended) David Young
@ 1999-06-30 22:10   ` Mumit Khan
  1 sibling, 0 replies; 10+ messages in thread
From: Mumit Khan @ 1999-06-30 22:10 UTC (permalink / raw)
  To: Raju K. V.; +Cc: cygwin

"Raju K. V." <rajukv@wipinfo.soft.net> writes:
> hi,
> 
> What are the steps for making  a cross compiler for cygwin?
> 

In the future, please search the mailing list first. This and many
other questions are answered there.

See http://www.xraylith.wisc.edu/~khan/software/gnu-win32/ for howto
on building cross-compiler for cygwin.

Regards,
Mumit


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* how to make a cross compiler for cygwin?
  1999-06-08  2:21 how to make a cross compiler for cygwin? Raju K. V.
  1999-06-08  2:28 ` Aldo Mazzilli
  1999-06-08  8:04 ` Mumit Khan
@ 1999-06-30 22:10 ` Raju K. V.
  2 siblings, 0 replies; 10+ messages in thread
From: Raju K. V. @ 1999-06-30 22:10 UTC (permalink / raw)
  To: cygwin

hi,

What are the steps for making  a cross compiler for cygwin?

Thanks,
Raju


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

end of thread, other threads:[~1999-06-30 22:10 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-06-08  2:21 how to make a cross compiler for cygwin? Raju K. V.
1999-06-08  2:28 ` Aldo Mazzilli
1999-06-30 22:10   ` Aldo Mazzilli
1999-06-08  8:04 ` Mumit Khan
1999-06-08  8:30   ` MFC VC++ mail list? (no spam intended) David Young
1999-06-08  9:10     ` Mumit Khan
1999-06-30 22:10       ` Mumit Khan
1999-06-30 22:10     ` David Young
1999-06-30 22:10   ` how to make a cross compiler for cygwin? Mumit Khan
1999-06-30 22:10 ` Raju K. V.

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