GNU bug report logs -
#18544
24.4.50; USE_STACK_LISP_OBJECTS change breaks the build on many platforms
Previous Next
Reported by: Ken Brown <kbrown <at> cornell.edu>
Date: Wed, 24 Sep 2014 13:24:02 UTC
Severity: normal
Found in version 24.4.50
Done: Ken Brown <kbrown <at> cornell.edu>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 18544 in the body.
You can then email your comments to 18544 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#18544
; Package
emacs
.
(Wed, 24 Sep 2014 13:24:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Ken Brown <kbrown <at> cornell.edu>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Wed, 24 Sep 2014 13:24:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
bzr rev 117935 breaks the build on all platforms other than GNU/Linux.
The following patch restores the code to what I think was intended:
=== modified file 'src/lisp.h'
--- src/lisp.h 2014-09-24 11:59:13 +0000
+++ src/lisp.h 2014-09-24 12:59:07 +0000
@@ -290,9 +290,9 @@
#ifndef USE_STACK_LISP_OBJECTS
# if defined (GNU_LINUX) && defined (__GNUC__) && !defined (__clang__)
# define USE_STACK_LISP_OBJECTS true
+# else
+# define USE_STACK_LISP_OBJECTS false
# endif
-#else
-# define USE_STACK_LISP_OBJECTS false
#endif
#if defined HAVE_STRUCT_ATTRIBUTE_ALIGNED && USE_STACK_LISP_OBJECTS
In GNU Emacs 24.4.50.2 (x86_64-unknown-cygwin)
of 2014-09-24 on fiona
Repository revision: 117935
dmantipov <at> yandex.ru-20140924115913-as413xc2t3d1xq60
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
`configure --with-w32 --with-file-notification=no
--enable-checking=yes,glyphs 'CFLAGS=-O0 -g3''
Configured features:
XPM JPEG TIFF GIF PNG IMAGEMAGICK DBUS ACL GNUTLS LIBXML2 ZLIB
Important settings:
value of $LANG: en_US.UTF-8
locale-coding-system: utf-8-unix
Major mode: Lisp Interaction
Minor modes in effect:
tooltip-mode: t
electric-indent-mode: t
mouse-wheel-mode: t
tool-bar-mode: t
menu-bar-mode: t
file-name-shadow-mode: t
global-font-lock-mode: t
font-lock-mode: t
blink-cursor-mode: t
auto-composition-mode: t
auto-encryption-mode: t
auto-compression-mode: t
line-number-mode: t
Recent input:
M-x r e p o r t - e m <tab> <return>
Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
Load-path shadows:
None found.
Features:
(shadow sort gnus-util mail-extr emacsbug message dired format-spec
rfc822 mml easymenu mml-sec mm-decode mm-bodies mm-encode mail-parse
rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045
ietf-drums mm-util help-fns mail-prsvr mail-utils time-date tooltip
electric uniquify ediff-hook vc-hooks lisp-float-type mwheel
w32-common-fns disp-table w32-win w32-vars tool-bar dnd fontset image
regexp-opt fringe tabulated-list newcomment lisp-mode prog-mode register
page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock
font-lock syntax facemenu font-core frame cham georgian utf-8-lang
misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew
greek romanian slovak czech european ethiopic indian cyrillic chinese
case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer nadvice
loaddefs button faces cus-face macroexp files text-properties overlay
sha1 md5 base64 format env code-pages mule custom widget
hashtable-print-readable backquote make-network-process dbusbind w32
multi-tty emacs)
Memory information:
((conses 16 78103 5040)
(symbols 48 17816 0)
(miscs 40 43 115)
(strings 32 12754 3583)
(string-bytes 1 313824)
(vectors 16 10021)
(vector-slots 8 382326 12678)
(floats 8 70 196)
(intervals 56 202 12)
(buffers 976 12))
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#18544
; Package
emacs
.
(Wed, 24 Sep 2014 13:46:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 18544 <at> debbugs.gnu.org (full text, mbox):
On 09/24/2014 05:22 PM, Ken Brown wrote:
> bzr rev 117935 breaks the build on all platforms other than GNU/Linux.
> The following patch restores the code to what I think was intended:
>
> === modified file 'src/lisp.h'
> --- src/lisp.h 2014-09-24 11:59:13 +0000
> +++ src/lisp.h 2014-09-24 12:59:07 +0000
> @@ -290,9 +290,9 @@
> #ifndef USE_STACK_LISP_OBJECTS
> # if defined (GNU_LINUX) && defined (__GNUC__) && !defined (__clang__)
> # define USE_STACK_LISP_OBJECTS true
> +# else
> +# define USE_STACK_LISP_OBJECTS false
> # endif
> -#else
> -# define USE_STACK_LISP_OBJECTS false
> #endif
Oops. Surely you're right. Should be fixed in 117936.
Dmitry
Reply sent
to
Ken Brown <kbrown <at> cornell.edu>
:
You have taken responsibility.
(Wed, 24 Sep 2014 14:14:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Ken Brown <kbrown <at> cornell.edu>
:
bug acknowledged by developer.
(Wed, 24 Sep 2014 14:14:02 GMT)
Full text and
rfc822 format available.
Message #13 received at 18544-done <at> debbugs.gnu.org (full text, mbox):
On 9/24/2014 9:45 AM, Dmitry Antipov wrote:
> Oops. Surely you're right. Should be fixed in 117936.
Confirmed. Thanks.
Ken
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 23 Oct 2014 11:24:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 10 years and 241 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.