unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#54224: Configure error on windows 11
@ 2022-03-02 22:39 Edouard Debry
  2022-03-03  7:04 ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Edouard Debry @ 2022-03-02 22:39 UTC (permalink / raw)
  To: 54224


Hello,

Latest (from yesterday) emacs master retrieved.

Configuration :

CFLAGS="-O2 -march=skylake" ./configure
--prefix=/d/Documents/utils/msys64/mingw64/local
--without-compress-install --with-native-compilation --without-dbus
--without-pop --with-modules

ends with :

...
config.status: creating admin/charsets/Makefile
config.status: creating admin/unidata/Makefile
config.status: creating admin/grammars/Makefile
config.status: creating src/config.h
config.status: executing src/epaths.h commands
sed: -e expression #1, char 79: unknown option to `s'
gmake: *** [Makefile:420: epaths-force-w32] Error 1
config.status: error: 'src/epaths.h' could not be made.

I did not try to compile afterwards for I recall this header file is
mandatory when compiling emacs on windows 11

How can I fix ?

Regards






^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#54224: Configure error on windows 11
  2022-03-02 22:39 bug#54224: Configure error on windows 11 Edouard Debry
@ 2022-03-03  7:04 ` Eli Zaretskii
  2022-03-03  9:09   ` Edouard Debry
  2022-03-03 21:30   ` Edouard Debry
  0 siblings, 2 replies; 5+ messages in thread
From: Eli Zaretskii @ 2022-03-03  7:04 UTC (permalink / raw)
  To: Edouard Debry; +Cc: 54224

> From: Edouard Debry <edouard.debry@gmail.com>
> Date: Wed, 02 Mar 2022 23:39:45 +0100
> 
> Latest (from yesterday) emacs master retrieved.
> 
> Configuration :
> 
> CFLAGS="-O2 -march=skylake" ./configure
> --prefix=/d/Documents/utils/msys64/mingw64/local
> --without-compress-install --with-native-compilation --without-dbus
> --without-pop --with-modules
> 
> ends with :
> 
> ...
> config.status: creating admin/charsets/Makefile
> config.status: creating admin/unidata/Makefile
> config.status: creating admin/grammars/Makefile
> config.status: creating src/config.h
> config.status: executing src/epaths.h commands
> sed: -e expression #1, char 79: unknown option to `s'
> gmake: *** [Makefile:420: epaths-force-w32] Error 1
> config.status: error: 'src/epaths.h' could not be made.

No such problem here.

What does the following command show if you invoke it from the Git
Bash prompt in the Emacs work tree:

    git config core.autocrlf





^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#54224: Configure error on windows 11
  2022-03-03  7:04 ` Eli Zaretskii
@ 2022-03-03  9:09   ` Edouard Debry
  2022-03-03 21:30   ` Edouard Debry
  1 sibling, 0 replies; 5+ messages in thread
From: Edouard Debry @ 2022-03-03  9:09 UTC (permalink / raw)
  To: 54224

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Edouard Debry <edouard.debry@gmail.com>
>> Date: Wed, 02 Mar 2022 23:39:45 +0100
>> 
>> Latest (from yesterday) emacs master retrieved.
>> 
>> Configuration :
>> 
>> CFLAGS="-O2 -march=skylake" ./configure
>> --prefix=/d/Documents/utils/msys64/mingw64/local
>> --without-compress-install --with-native-compilation --without-dbus
>> --without-pop --with-modules
>> 
>> ends with :
>> 
>> ...
>> config.status: creating admin/charsets/Makefile
>> config.status: creating admin/unidata/Makefile
>> config.status: creating admin/grammars/Makefile
>> config.status: creating src/config.h
>> config.status: executing src/epaths.h commands
>> sed: -e expression #1, char 79: unknown option to `s'
>> gmake: *** [Makefile:420: epaths-force-w32] Error 1
>> config.status: error: 'src/epaths.h' could not be made.
>
> No such problem here.
>
> What does the following command show if you invoke it from the Git
> Bash prompt in the Emacs work tree:
>
>     git config core.autocrlf

Actually, I retrieve a zip archive from the github emacs mirror.

I guess you want me to try on a cloned repository. I will try and let
you know.

Regards






^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#54224: Configure error on windows 11
  2022-03-03  7:04 ` Eli Zaretskii
  2022-03-03  9:09   ` Edouard Debry
@ 2022-03-03 21:30   ` Edouard Debry
  2022-03-06 18:25     ` Corwin Brust
  1 sibling, 1 reply; 5+ messages in thread
From: Edouard Debry @ 2022-03-03 21:30 UTC (permalink / raw)
  To: 54224

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Edouard Debry <edouard.debry@gmail.com>
>> Date: Wed, 02 Mar 2022 23:39:45 +0100
>> 
>> Latest (from yesterday) emacs master retrieved.
>> 
>> Configuration :
>> 
>> CFLAGS="-O2 -march=skylake" ./configure
>> --prefix=/d/Documents/utils/msys64/mingw64/local
>> --without-compress-install --with-native-compilation --without-dbus
>> --without-pop --with-modules
>> 
>> ends with :
>> 
>> ...
>> config.status: creating admin/charsets/Makefile
>> config.status: creating admin/unidata/Makefile
>> config.status: creating admin/grammars/Makefile
>> config.status: creating src/config.h
>> config.status: executing src/epaths.h commands
>> sed: -e expression #1, char 79: unknown option to `s'
>> gmake: *** [Makefile:420: epaths-force-w32] Error 1
>> config.status: error: 'src/epaths.h' could not be made.
>
> No such problem here.
>
> What does the following command show if you invoke it from the Git
> Bash prompt in the Emacs work tree:
>
>     git config core.autocrlf

Fixed, issue was that "gmake" was used instead of "make" because of my
PATH.

Regards






^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#54224: Configure error on windows 11
  2022-03-03 21:30   ` Edouard Debry
@ 2022-03-06 18:25     ` Corwin Brust
  0 siblings, 0 replies; 5+ messages in thread
From: Corwin Brust @ 2022-03-06 18:25 UTC (permalink / raw)
  To: Edouard Debry; +Cc: 54224-done

On Thu, Mar 3, 2022 at 3:31 PM Edouard Debry <edouard.debry@gmail.com> wrote:
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> >
> > No such problem here.
> >
> > What does the following command show if you invoke it from the Git
> > Bash prompt in the Emacs work tree:
> >
> >     git config core.autocrlf
>
> Fixed, issue was that "gmake" was used instead of "make" because of my
> PATH.

Thanks; I'm therefore closing this bug report.

>
> Regards





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-03-06 18:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-02 22:39 bug#54224: Configure error on windows 11 Edouard Debry
2022-03-03  7:04 ` Eli Zaretskii
2022-03-03  9:09   ` Edouard Debry
2022-03-03 21:30   ` Edouard Debry
2022-03-06 18:25     ` Corwin Brust

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).