* Emacs CVS Crash
@ 2005-09-06 21:56 Vinicius Jose Latorre
2005-09-06 23:07 ` Kim F. Storm
2005-09-06 23:13 ` Nick Roberts
0 siblings, 2 replies; 5+ messages in thread
From: Vinicius Jose Latorre @ 2005-09-06 21:56 UTC (permalink / raw)
Hi Folks,
I've just updated Emacs sources from CVS today.
Then:
$ make maintainer-clean
$ ./configure --prefix=/home/download/emacs
$ make bootstrap
[...skipped for brevity...]
gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_LUCID -I.
-I/home/vinicius/work/emacs/src -D_BSD_SOURCE -I/usr/X11R6/include -g
-O2 indent.c
gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_LUCID -I.
-I/home/vinicius/work/emacs/src -D_BSD_SOURCE -I/usr/X11R6/include -g
-O2 search.c
search.c: In function `Fset_match_data':
search.c:2974: internal error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://bugzilla.redhat.com/bugzilla/> for instructions.
make[2]: *** [search.o] Error 1
make[2]: Leaving directory `/home/vinicius/work/emacs/src'
make[1]: *** [src] Error 2
make[1]: Leaving directory `/home/vinicius/work/emacs'
make: *** [bootstrap-build] Error 2
Vinicius
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Emacs CVS Crash
2005-09-06 21:56 Emacs CVS Crash Vinicius Jose Latorre
@ 2005-09-06 23:07 ` Kim F. Storm
2005-09-06 23:13 ` Nick Roberts
1 sibling, 0 replies; 5+ messages in thread
From: Kim F. Storm @ 2005-09-06 23:07 UTC (permalink / raw)
Cc: emacs-devel
Vinicius Jose Latorre <viniciusjl@ig.com.br> writes:
> Hi Folks,
>
>
> I've just updated Emacs sources from CVS today.
>
> Then:
>
> $ make maintainer-clean
> $ ./configure --prefix=/home/download/emacs
> $ make bootstrap
> [...skipped for brevity...]
> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_LUCID
> -I. -I/home/vinicius/work/emacs/src -D_BSD_SOURCE -I/usr/X11R6/include
> -g
> -O2 indent.c
> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_LUCID
> -I. -I/home/vinicius/work/emacs/src -D_BSD_SOURCE -I/usr/X11R6/include
> -g
> -O2 search.c
> search.c: In function `Fset_match_data':
> search.c:2974: internal error: Segmentation fault
> Please submit a full bug report,
> with preprocessed source if appropriate.
> See <URL:http://bugzilla.redhat.com/bugzilla/> for instructions.
> make[2]: *** [search.o] Error 1
> make[2]: Leaving directory `/home/vinicius/work/emacs/src'
> make[1]: *** [src] Error 2
> make[1]: Leaving directory `/home/vinicius/work/emacs'
> make: *** [bootstrap-build] Error 2
Isn't that the compiler crashing?
--
Kim F. Storm <storm@cua.dk> http://www.cua.dk
^ permalink raw reply [flat|nested] 5+ messages in thread
* Emacs CVS Crash
2005-09-06 21:56 Emacs CVS Crash Vinicius Jose Latorre
2005-09-06 23:07 ` Kim F. Storm
@ 2005-09-06 23:13 ` Nick Roberts
2005-09-07 3:31 ` Vinicius Jose Latorre
1 sibling, 1 reply; 5+ messages in thread
From: Nick Roberts @ 2005-09-06 23:13 UTC (permalink / raw)
Cc: emacs-devel
That looks like gcc thats crashed not Emacs. If its a bug with gcc, should
you be reporting it to them?
Nick
Vinicius Jose Latorre writes:
> Hi Folks,
>
>
> I've just updated Emacs sources from CVS today.
>
> Then:
>
> $ make maintainer-clean
> $ ./configure --prefix=/home/download/emacs
> $ make bootstrap
> [...skipped for brevity...]
> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_LUCID -I.
> -I/home/vinicius/work/emacs/src -D_BSD_SOURCE -I/usr/X11R6/include -g
> -O2 indent.c
> gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_LUCID -I.
> -I/home/vinicius/work/emacs/src -D_BSD_SOURCE -I/usr/X11R6/include -g
> -O2 search.c
> search.c: In function `Fset_match_data':
> search.c:2974: internal error: Segmentation fault
> Please submit a full bug report,
> with preprocessed source if appropriate.
> See <URL:http://bugzilla.redhat.com/bugzilla/> for instructions.
> make[2]: *** [search.o] Error 1
> make[2]: Leaving directory `/home/vinicius/work/emacs/src'
> make[1]: *** [src] Error 2
> make[1]: Leaving directory `/home/vinicius/work/emacs'
> make: *** [bootstrap-build] Error 2
>
>
> Vinicius
>
>
>
> _______________________________________________
> Emacs-devel mailing list
> Emacs-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Emacs CVS Crash
2005-09-06 23:13 ` Nick Roberts
@ 2005-09-07 3:31 ` Vinicius Jose Latorre
2005-09-07 10:01 ` Richard M. Stallman
0 siblings, 1 reply; 5+ messages in thread
From: Vinicius Jose Latorre @ 2005-09-07 3:31 UTC (permalink / raw)
Cc: emacs-devel
It happens in gcc 3.2.2 but not in 3.3.5 (I've just test it), so the bug
is already fixed in gcc.
Indeed, it's a compiler bug, but this bug affects Emacs building.
Nick Roberts wrote:
> That looks like gcc thats crashed not Emacs. If its a bug with gcc, should
> you be reporting it to them?
>
> Nick
>
>
> Vinicius Jose Latorre writes:
> > Hi Folks,
> >
> >
> > I've just updated Emacs sources from CVS today.
> >
> > Then:
> >
> > $ make maintainer-clean
> > $ ./configure --prefix=/home/download/emacs
> > $ make bootstrap
> > [...skipped for brevity...]
> > gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_LUCID -I.
> > -I/home/vinicius/work/emacs/src -D_BSD_SOURCE -I/usr/X11R6/include -g
> > -O2 indent.c
> > gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -DUSE_LUCID -I.
> > -I/home/vinicius/work/emacs/src -D_BSD_SOURCE -I/usr/X11R6/include -g
> > -O2 search.c
> > search.c: In function `Fset_match_data':
> > search.c:2974: internal error: Segmentation fault
> > Please submit a full bug report,
> > with preprocessed source if appropriate.
> > See <URL:http://bugzilla.redhat.com/bugzilla/> for instructions.
> > make[2]: *** [search.o] Error 1
> > make[2]: Leaving directory `/home/vinicius/work/emacs/src'
> > make[1]: *** [src] Error 2
> > make[1]: Leaving directory `/home/vinicius/work/emacs'
> > make: *** [bootstrap-build] Error 2
> >
> >
> > Vinicius
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Emacs CVS Crash
2005-09-07 3:31 ` Vinicius Jose Latorre
@ 2005-09-07 10:01 ` Richard M. Stallman
0 siblings, 0 replies; 5+ messages in thread
From: Richard M. Stallman @ 2005-09-07 10:01 UTC (permalink / raw)
Cc: nickrob, emacs-devel
It happens in gcc 3.2.2 but not in 3.3.5 (I've just test it), so the bug
is already fixed in gcc.
How about writing a brief entry for etc/PROBLEMS?
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-09-07 10:01 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-06 21:56 Emacs CVS Crash Vinicius Jose Latorre
2005-09-06 23:07 ` Kim F. Storm
2005-09-06 23:13 ` Nick Roberts
2005-09-07 3:31 ` Vinicius Jose Latorre
2005-09-07 10:01 ` Richard M. Stallman
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.