* Trunk does not compile on w32 - ignore-value.h: No such file or directory
@ 2011-02-03 20:33 Lennart Borgman
2011-02-03 22:47 ` Paul Eggert
0 siblings, 1 reply; 6+ messages in thread
From: Lennart Borgman @ 2011-02-03 20:33 UTC (permalink / raw)
To: Emacs-Devel devel
gcc -I. -c -gdwarf-2 -g3 -DEMACSDEBUG -Ic:/g/include
-fno-crossjumping -Demacs=1 -DHAVE_CONFIG_H -I../lib -I../nt/inc
-DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo/i386/sysdep.o sysdep.c
sysdep.c:34:26: ignore-value.h: No such file or directory
make[2]: *** [oo/i386/sysdep.o] Error 1
make[2]: Leaving directory `C:/emacs-lp/bld/emacs/trunk/src'
make[1]: *** [bootstrap-temacs] Error 2
make[1]: Leaving directory `C:/emacs-lp/bld/emacs/trunk/src'
make: *** [bootstrap-gmake] Error 2
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Trunk does not compile on w32 - ignore-value.h: No such file or directory
2011-02-03 20:33 Trunk does not compile on w32 - ignore-value.h: No such file or directory Lennart Borgman
@ 2011-02-03 22:47 ` Paul Eggert
2011-02-04 0:13 ` Lennart Borgman
2011-02-04 9:20 ` Eli Zaretskii
0 siblings, 2 replies; 6+ messages in thread
From: Paul Eggert @ 2011-02-03 22:47 UTC (permalink / raw)
To: emacs-devel
Sorry about that; it should be fixed by BZR commit 103106.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Trunk does not compile on w32 - ignore-value.h: No such file or directory
2011-02-03 22:47 ` Paul Eggert
@ 2011-02-04 0:13 ` Lennart Borgman
2011-02-04 0:24 ` Paul Eggert
2011-02-04 9:20 ` Eli Zaretskii
1 sibling, 1 reply; 6+ messages in thread
From: Lennart Borgman @ 2011-02-04 0:13 UTC (permalink / raw)
To: Paul Eggert; +Cc: emacs-devel
On Thu, Feb 3, 2011 at 11:47 PM, Paul Eggert <eggert@cs.ucla.edu> wrote:
> Sorry about that; it should be fixed by BZR commit 103106.
Thanks, but now I get
gcc -I. -c -gdwarf-2 -g3 -DEMACSDEBUG -Ic:/g/include
-fno-crossjumping -Demacs=1 -DHAVE_CONFIG_H -I../lib -I../nt/inc
-DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo/i386/sysdep.o sysdep.c
sysdep.c:34:26: ignore-value.h: No such file or directory
make[2]: *** [oo/i386/sysdep.o] Error 1
make[2]: Leaving directory `C:/emacs-lp/bld/emacs/trunk/src'
make[1]: *** [bootstrap-temacs] Error 2
make[1]: Leaving directory `C:/emacs-lp/bld/emacs/trunk/src'
make: *** [bootstrap-gmake] Error 2
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Trunk does not compile on w32 - ignore-value.h: No such file or directory
2011-02-04 0:13 ` Lennart Borgman
@ 2011-02-04 0:24 ` Paul Eggert
2011-02-04 0:31 ` Lennart Borgman
0 siblings, 1 reply; 6+ messages in thread
From: Paul Eggert @ 2011-02-04 0:24 UTC (permalink / raw)
To: Lennart Borgman; +Cc: emacs-devel
On 02/03/11 16:13, Lennart Borgman wrote:
> now I get
>
> gcc -I. -c -gdwarf-2 -g3 -DEMACSDEBUG -Ic:/g/include
> -fno-crossjumping -Demacs=1 -DHAVE_CONFIG_H -I../lib -I../nt/inc
> -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo/i386/sysdep.o sysdep.c
> sysdep.c:34:26: ignore-value.h: No such file or directory
This is the w32 build, right?
If you've incorporated BZR commit 103106, there should be
a file ../lib/ignore-value.h and 'gcc ... -I../lib'
should have found it. Can you please investigate why
that didn't happen?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Trunk does not compile on w32 - ignore-value.h: No such file or directory
2011-02-04 0:24 ` Paul Eggert
@ 2011-02-04 0:31 ` Lennart Borgman
0 siblings, 0 replies; 6+ messages in thread
From: Lennart Borgman @ 2011-02-04 0:31 UTC (permalink / raw)
To: Paul Eggert; +Cc: emacs-devel
On Fri, Feb 4, 2011 at 1:24 AM, Paul Eggert <eggert@cs.ucla.edu> wrote:
> On 02/03/11 16:13, Lennart Borgman wrote:
>> now I get
>>
>> gcc -I. -c -gdwarf-2 -g3 -DEMACSDEBUG -Ic:/g/include
>> -fno-crossjumping -Demacs=1 -DHAVE_CONFIG_H -I../lib -I../nt/inc
>> -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo/i386/sysdep.o sysdep.c
>> sysdep.c:34:26: ignore-value.h: No such file or directory
>
> This is the w32 build, right?
Yes.
> If you've incorporated BZR commit 103106, there should be
> a file ../lib/ignore-value.h and 'gcc ... -I../lib'
> should have found it. Can you please investigate why
> that didn't happen?
I have no idea at the moment. It seems to work now (though compilation
have not finished).
Might have been some temporary thing. Unfortunately I happened to
erase the log file (my own variant for compilation etc).
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Trunk does not compile on w32 - ignore-value.h: No such file or directory
2011-02-03 22:47 ` Paul Eggert
2011-02-04 0:13 ` Lennart Borgman
@ 2011-02-04 9:20 ` Eli Zaretskii
1 sibling, 0 replies; 6+ messages in thread
From: Eli Zaretskii @ 2011-02-04 9:20 UTC (permalink / raw)
To: Paul Eggert; +Cc: emacs-devel
> Date: Thu, 03 Feb 2011 14:47:37 -0800
> From: Paul Eggert <eggert@cs.ucla.edu>
>
> Sorry about that; it should be fixed by BZR commit 103106.
I updated the dependencies in src/makefile.w32-in to accommodate those
changes.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-02-04 9:20 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-03 20:33 Trunk does not compile on w32 - ignore-value.h: No such file or directory Lennart Borgman
2011-02-03 22:47 ` Paul Eggert
2011-02-04 0:13 ` Lennart Borgman
2011-02-04 0:24 ` Paul Eggert
2011-02-04 0:31 ` Lennart Borgman
2011-02-04 9:20 ` 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).