public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Concise Instructions for Doing a gcc Cross-Compile in CYGWIN for  FreeBSD
@ 2002-07-17  6:00 Miller, Bruce SAXONHQ
  2002-07-17  6:38 ` Nicholas Wourms
  2002-07-18  4:17 ` Jan Nieuwenhuizen
  0 siblings, 2 replies; 4+ messages in thread
From: Miller, Bruce SAXONHQ @ 2002-07-17  6:00 UTC (permalink / raw)
  To: 'cygwin@cygwin.com'

I'm looking for clear/concise Instructions for doing a gcc cross-compile in
CYGWIN for FreeBSD.
Thanks in advance.

Bruce Miller
millerb@saxonmtg.com

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: Concise Instructions for Doing a gcc Cross-Compile in CYGWIN for  FreeBSD
  2002-07-17  6:00 Concise Instructions for Doing a gcc Cross-Compile in CYGWIN for FreeBSD Miller, Bruce SAXONHQ
@ 2002-07-17  6:38 ` Nicholas Wourms
  2002-07-18  4:17 ` Jan Nieuwenhuizen
  1 sibling, 0 replies; 4+ messages in thread
From: Nicholas Wourms @ 2002-07-17  6:38 UTC (permalink / raw)
  To: Miller, Bruce SAXONHQ, 'cygwin@cygwin.com'; +Cc: crossgcc


--- "Miller, Bruce SAXONHQ" <MillerB@Saxonmtg.com> wrote:
> I'm looking for clear/concise Instructions for doing a gcc cross-compile
> in
> CYGWIN for FreeBSD.
> Thanks in advance.
> 
> Bruce Miller
> millerb@saxonmtg.com
> 

If you search the cygwin-apps mailing list archives, this has been
discussed recently on how to do it for linux.  BSD should be no different.
 Also, this sort of question is off-topic for this list, and thus I have
redirected it to the appropriate list which discusses developing and
building crosscompiler environments.

Cheers,
Nicholas

__________________________________________________
Do You Yahoo!?
Yahoo! Autos - Get free new car price quotes
http://autos.yahoo.com

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* Re: Concise Instructions for Doing a gcc Cross-Compile in CYGWIN for  FreeBSD
  2002-07-17  6:00 Concise Instructions for Doing a gcc Cross-Compile in CYGWIN for FreeBSD Miller, Bruce SAXONHQ
  2002-07-17  6:38 ` Nicholas Wourms
@ 2002-07-18  4:17 ` Jan Nieuwenhuizen
  2002-07-18  6:20   ` Robert Collins
  1 sibling, 1 reply; 4+ messages in thread
From: Jan Nieuwenhuizen @ 2002-07-18  4:17 UTC (permalink / raw)
  To: cygwin; +Cc: cygwin-apps

"Miller, Bruce SAXONHQ" <MillerB@Saxonmtg.com> writes:

[Followup to cygwin-apps]

> I'm looking for clear/concise Instructions for doing a gcc cross-compile in
> CYGWIN for FreeBSD.

As noticed, this has been discused on cygwin-apps.  As an addendum,
I'm working to provide cross-compile setup as mknetrel scripts, but
they've not been offered to be included in mknetrel yet.  You can find
them as a WIP at:

   http://lilypond.org/~jan/cygwin/mknetrel

Get mknetrel here:

   cvs -d:pserver:anoncvs@sources.redhat.com:/cvs/cygwin-apps co mknetrel

Greetings,
Jan.

-- 
Jan Nieuwenhuizen <janneke@gnu.org> | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien       | http://www.lilypond.org


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

* RE: Concise Instructions for Doing a gcc Cross-Compile in CYGWIN for  FreeBSD
  2002-07-18  4:17 ` Jan Nieuwenhuizen
@ 2002-07-18  6:20   ` Robert Collins
  0 siblings, 0 replies; 4+ messages in thread
From: Robert Collins @ 2002-07-18  6:20 UTC (permalink / raw)
  To: cygwin-apps, cygwin


> -----Original Message-----
> From: cygwin-apps-owner@cygwin.com 
> [mailto:cygwin-apps-owner@cygwin.com] On Behalf Of Jan Nieuwenhuizen
> Sent: Thursday, 18 July 2002 8:09 PM

> As noticed, this has been discused on cygwin-apps.  As an addendum,
> I'm working to provide cross-compile setup as mknetrel scripts, but
> they've not been offered to be included in mknetrel yet.  You can find
> them as a WIP at:

If you want an alternative to creating yet another tool, you might find
the following script kinda useful. A similar principle applies to the
use of rpm cross-compile toolkits.

===
#! /bin/bash
# convert a deb file to a cygwin setup.exe tarball

export PKG=`echo $1 | sed -e 's/_.*//'`
echo package $PKG
export VER=`echo $1 | sed -e 's/[^_]*_//' -e 's/_.*//'`
echo version $VER
export REL=1
echo cygwin release 1
export FULLPKG=${PKG}-${VER}-${REL}
export bin_pkg_name=${FULLPKG}.tar.bz2
export bin_pkg=`pwd`/${bin_pkg_name}


dpkg-deb -x $1 $PKG-$VER-temp && \
  cd $PKG-$VER-temp && \
  tar cvjf ${bin_pkg} * &&
  echo ${bin_pkg} created.

====


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

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

end of thread, other threads:[~2002-07-18 10:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-07-17  6:00 Concise Instructions for Doing a gcc Cross-Compile in CYGWIN for FreeBSD Miller, Bruce SAXONHQ
2002-07-17  6:38 ` Nicholas Wourms
2002-07-18  4:17 ` Jan Nieuwenhuizen
2002-07-18  6:20   ` Robert Collins

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