GNU bug report logs - #22412
25.1.50; win32; master branch; build fails; \emacs\src/sysdep.c:2122: undefined reference t

Previous Next

Package: emacs;

Reported by: Keith David Bershatsky <esq <at> lawlist.com>

Date: Wed, 20 Jan 2016 06:03:02 UTC

Severity: normal

Found in version 25.1.50

Done: Eli Zaretskii <eliz <at> gnu.org>

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 22412 in the body.
You can then email your comments to 22412 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#22412; Package emacs. (Wed, 20 Jan 2016 06:03:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Keith David Bershatsky <esq <at> lawlist.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Wed, 20 Jan 2016 06:03:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Keith David Bershatsky <esq <at> lawlist.com>
To: bug-gnu-emacs <at> gnu.org
Subject: 25.1.50; win32; master branch; build fails;
 \emacs\src/sysdep.c:2122: undefined reference t
Date: Tue, 19 Jan 2016 22:02:12 -0800
The current master branch failed to build this evening for Win32 using MinGW.  Here is the point at which the build stops:

***

  GEN      ../../etc/charsets/MULE-tibetan.map
  GEN      ../../etc/charsets/MULE-lviscii.map
  GEN      ../../etc/charsets/MULE-uviscii.map
  GEN      ../../lisp/international/cp51932.el
  GEN      ../../lisp/international/eucjp-ms.el
  GEN      charsets.stamp
make[2]: Leaving directory `/c/docume~1/administrator/desktop/emacs/admin/charse
ts'
make -C ../admin/unidata charscript.el
make[2]: Entering directory `/c/docume~1/administrator/desktop/emacs/admin/unida
ta'
  GEN      ../../lisp/international/charscript.el
make[2]: Leaving directory `/c/docume~1/administrator/desktop/emacs/admin/unidat
a'
  CCLD     temacs.exe
sysdep.o: In function `init_random':
c:\docume~1\administrator\desktop\emacs\src/sysdep.c:2122: undefined reference t
o `w32_init_random'
collect2.exe: error: ld returned 1 exit status
make[1]: *** [temacs.exe] Error 1
make[1]: Leaving directory `/c/docume~1/administrator/desktop/emacs/src'
make: *** [src] Error 2

Thanks,

Keith




Reply sent to Eli Zaretskii <eliz <at> gnu.org>:
You have taken responsibility. (Wed, 20 Jan 2016 09:50:03 GMT) Full text and rfc822 format available.

Notification sent to Keith David Bershatsky <esq <at> lawlist.com>:
bug acknowledged by developer. (Wed, 20 Jan 2016 09:50:03 GMT) Full text and rfc822 format available.

Message #10 received at 22412-done <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Keith David Bershatsky <esq <at> lawlist.com>,
 John Wiegley <johnw <at> gnu.org>
Cc: 22412-done <at> debbugs.gnu.org
Subject: Re: bug#22412: 25.1.50; win32; master branch; build fails;
 \emacs\src/sysdep.c:2122: undefined reference t
Date: Wed, 20 Jan 2016 11:49:18 +0200
> Date: Tue, 19 Jan 2016 22:02:12 -0800
> From: Keith David Bershatsky <esq <at> lawlist.com>
> 
> The current master branch failed to build this evening for Win32
> using MinGW.

Thanks, fixed.

John, something went wrong during the last merge from emacs-25.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22412; Package emacs. (Wed, 20 Jan 2016 15:21:02 GMT) Full text and rfc822 format available.

Message #13 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Andy Moreton <andrewjmoreton <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: Re: bug#22412: 25.1.50; win32; master branch; build fails;
 \emacs\src/sysdep.c:2122: undefined reference t
Date: Wed, 20 Jan 2016 15:17:44 +0000
On Wed 20 Jan 2016, Eli Zaretskii wrote:

>> Date: Tue, 19 Jan 2016 22:02:12 -0800
>> From: Keith David Bershatsky <esq <at> lawlist.com>
>> 
>> The current master branch failed to build this evening for Win32
>> using MinGW.
>
> Thanks, fixed.
>
> John, something went wrong during the last merge from emacs-25.

Indeed. Master needs another fix for the cygwin-w32 build:

diff --git a/src/w32fns.c b/src/w32fns.c
index 01f5d6f3ae0f..93ff1da2a228 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -9921,6 +9921,7 @@ globals_of_w32fns (void)
   except_addr = 0;
 #ifndef CYGWIN
   prev_exception_handler = SetUnhandledExceptionFilter (my_exception_handler);
+  resetstkoflw = NULL;
 #endif
 
   DEFVAR_INT ("w32-ansi-code-page",
@@ -9935,7 +9936,6 @@ globals_of_w32fns (void)
 
   after_deadkey = -1;
 
-  resetstkoflw = NULL;
 
   /* MessageBox does not work without this when linked to comctl32.dll 6.0.  */
   InitCommonControls ();





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22412; Package emacs. (Wed, 20 Jan 2016 17:36:02 GMT) Full text and rfc822 format available.

Message #16 received at 22412 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Andy Moreton <andrewjmoreton <at> gmail.com>
Cc: 22412 <at> debbugs.gnu.org
Subject: Re: bug#22412: 25.1.50; win32; master branch; build fails;
 \emacs\src/sysdep.c:2122: undefined reference t
Date: Wed, 20 Jan 2016 19:35:53 +0200
> From: Andy Moreton <andrewjmoreton <at> gmail.com>
> Date: Wed, 20 Jan 2016 15:17:44 +0000
> 
> On Wed 20 Jan 2016, Eli Zaretskii wrote:
> 
> >> Date: Tue, 19 Jan 2016 22:02:12 -0800
> >> From: Keith David Bershatsky <esq <at> lawlist.com>
> >> 
> >> The current master branch failed to build this evening for Win32
> >> using MinGW.
> >
> > Thanks, fixed.
> >
> > John, something went wrong during the last merge from emacs-25.
> 
> Indeed. Master needs another fix for the cygwin-w32 build:

Fixed, thanks.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#22412; Package emacs. (Wed, 20 Jan 2016 19:47:02 GMT) Full text and rfc822 format available.

Message #19 received at 22412 <at> debbugs.gnu.org (full text, mbox):

From: Glenn Morris <rgm <at> gnu.org>
To: 22412 <at> debbugs.gnu.org
Subject: Re: bug#22412: 25.1.50; win32; master branch; build fails;
 \emacs\src/sysdep.c:2122: undefined reference t
Date: Wed, 20 Jan 2016 14:46:00 -0500
Eli Zaretskii wrote:

> John, something went wrong during the last merge from emacs-25.

Merges would be easier to check if they were more frequent and hence smaller.
Anyone should feel free to do a merge, rather than waiting for one
person to do it. (Part of the sales pitch for changing VCS was that more
people would help out with these sort of tasks, but amazingly nothing's
really changed.)




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 18 Feb 2016 12:24:03 GMT) Full text and rfc822 format available.

This bug report was last modified 9 years and 124 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.