* Re: Removing --with-gcc, Cygwin
2008-02-03 4:07 ` Eli Zaretskii
@ 2008-02-03 21:00 ` Glenn Morris
2008-02-03 21:19 ` Glenn Morris
2008-02-04 4:12 ` Eli Zaretskii
0 siblings, 2 replies; 7+ messages in thread
From: Glenn Morris @ 2008-02-03 21:00 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: tromey, yavor, emacs-devel, mituharu, jasonr
Eli Zaretskii wrote:
> nt/INSTALL is not relevant to Cygwin builds.
My total ignorance of such issues is what prompted my question.
It certainly seems to be related to Cygwin to me:
If you are using certain Cygwin builds of GCC, such as Cygwin
version 1.1.8, you may need to specify some extra compiler flags like so:
configure --with-gcc --cflags -mwin32 --cflags -D__MSVCRT__
--ldflags -mwin32
However, the latest Cygwin versions, such as 1.3.3, don't need
those switches; you can simply use "configure --with-gcc".
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Removing --with-gcc, Cygwin
2008-02-03 21:00 ` Removing --with-gcc, Cygwin Glenn Morris
@ 2008-02-03 21:19 ` Glenn Morris
2008-02-03 21:24 ` Jason Rumney
2008-02-04 4:12 ` Eli Zaretskii
1 sibling, 1 reply; 7+ messages in thread
From: Glenn Morris @ 2008-02-03 21:19 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: tromey, yavor, jasonr, mituharu, emacs-devel
Glenn Morris wrote:
nt/INSTALL:
> configure --with-gcc --cflags -mwin32 --cflags -D__MSVCRT__
> --ldflags -mwin32
Oh, I guess this `configure' actually `configure.bat', which has its
own --with-gcc option...?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Removing --with-gcc, Cygwin
2008-02-03 21:19 ` Glenn Morris
@ 2008-02-03 21:24 ` Jason Rumney
2008-02-03 21:43 ` David Robinow
0 siblings, 1 reply; 7+ messages in thread
From: Jason Rumney @ 2008-02-03 21:24 UTC (permalink / raw)
To: Glenn Morris; +Cc: tromey, Eli Zaretskii, yavor, mituharu, emacs-devel
Glenn Morris wrote:
> Glenn Morris wrote:
>
> nt/INSTALL:
>
>
>> configure --with-gcc --cflags -mwin32 --cflags -D__MSVCRT__
>> --ldflags -mwin32
>>
>
> Oh, I guess this `configure' actually `configure.bat', which has its
> own --with-gcc option...?
>
Yes, although --with-gcc is the default, so it is not needed there either.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Removing --with-gcc, Cygwin
2008-02-03 21:24 ` Jason Rumney
@ 2008-02-03 21:43 ` David Robinow
2008-02-03 22:01 ` Jason Rumney
0 siblings, 1 reply; 7+ messages in thread
From: David Robinow @ 2008-02-03 21:43 UTC (permalink / raw)
To: Jason Rumney
Cc: Glenn Morris, yavor, emacs-devel, tromey, Eli Zaretskii, mituharu
On Feb 3, 2008 4:24 PM, Jason Rumney <jasonr@gnu.org> wrote:
>
> Glenn Morris wrote:
> > Oh, I guess this `configure' actually `configure.bat', which has its
> > own --with-gcc option...?
> >
>
> Yes, although --with-gcc is the default, so it is not needed there either.
Actually, msvc is used if it is found. If both are present,
--with-gcc is needed to force use of gcc.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Removing --with-gcc, Cygwin
2008-02-03 21:43 ` David Robinow
@ 2008-02-03 22:01 ` Jason Rumney
0 siblings, 0 replies; 7+ messages in thread
From: Jason Rumney @ 2008-02-03 22:01 UTC (permalink / raw)
To: David Robinow
Cc: Glenn Morris, yavor, emacs-devel, tromey, Eli Zaretskii, mituharu
David Robinow wrote:
> Actually, msvc is used if it is found. If both are present,
> --with-gcc is needed to force use of gcc.
>
So it is. I thought it was changed years ago. I have fixed that now.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Removing --with-gcc, Cygwin
@ 2008-02-03 22:24 Angelo Graziosi
0 siblings, 0 replies; 7+ messages in thread
From: Angelo Graziosi @ 2008-02-03 22:24 UTC (permalink / raw)
To: Glenn Morris; +Cc: emacs-devel
Glenn Morris wrote:
> However, the latest Cygwin versions, such as 1.3.3,
^^^^^^
But 1.3.3 is very very old and not supported any more!
The last version is 1.5.25-7 and the next will be 1.7!
Cheers,
Angelo.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Removing --with-gcc, Cygwin
2008-02-03 21:00 ` Removing --with-gcc, Cygwin Glenn Morris
2008-02-03 21:19 ` Glenn Morris
@ 2008-02-04 4:12 ` Eli Zaretskii
1 sibling, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2008-02-04 4:12 UTC (permalink / raw)
To: Glenn Morris; +Cc: tromey, yavor, emacs-devel, mituharu, jasonr
> From: Glenn Morris <rgm@gnu.org>
> Cc: tromey@redhat.com, yavor@gnu.org, jasonr@gnu.org, mituharu@math.s.chiba-u.ac.jp, emacs-devel@gnu.org
> Date: Sun, 03 Feb 2008 16:00:42 -0500
>
> Eli Zaretskii wrote:
>
> > nt/INSTALL is not relevant to Cygwin builds.
>
> My total ignorance of such issues is what prompted my question.
> It certainly seems to be related to Cygwin to me:
>
>
> If you are using certain Cygwin builds of GCC, such as Cygwin
> version 1.1.8, you may need to specify some extra compiler flags like so:
>
> configure --with-gcc --cflags -mwin32 --cflags -D__MSVCRT__
> --ldflags -mwin32
>
> However, the latest Cygwin versions, such as 1.3.3, don't need
> those switches; you can simply use "configure --with-gcc".
This talks about Cygwin builds of GCC, not of Emacs. The switches
mentioned above let Cygwin GCC produce native Windows executables (as
opposed to Cygwin executables, which depend on Cygwin runtime
support).
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-02-04 4:12 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-03 22:24 Removing --with-gcc, Cygwin Angelo Graziosi
-- strict thread matches above, loose matches on Subject: below --
2008-01-23 16:30 23.0.50; Image support disabled by default? Yavor Doganov
2008-01-23 17:17 ` Jason Rumney
2008-01-23 18:40 ` Tom Tromey
2008-01-25 4:37 ` Glenn Morris
2008-01-25 5:00 ` YAMAMOTO Mitsuharu
2008-01-27 22:20 ` Tom Tromey
2008-02-02 22:32 ` Removing --with-gcc, Cygwin [was Re: 23.0.50; Image support disabled by default?] Glenn Morris
2008-02-03 4:07 ` Eli Zaretskii
2008-02-03 21:00 ` Removing --with-gcc, Cygwin Glenn Morris
2008-02-03 21:19 ` Glenn Morris
2008-02-03 21:24 ` Jason Rumney
2008-02-03 21:43 ` David Robinow
2008-02-03 22:01 ` Jason Rumney
2008-02-04 4:12 ` Eli Zaretskii
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
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).