all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#62718: 30.0.50; Eglot compile error due to invalid version syntax
@ 2023-04-07 20:47 Casey Banner
  2023-04-07 21:27 ` João Távora
  0 siblings, 1 reply; 3+ messages in thread
From: Casey Banner @ 2023-04-07 20:47 UTC (permalink / raw)
  To: 62718

With the following configuration (building on windows):

 ../configure --prefix=/e/dev/emacs-src --without-dbus --without-pop
--with-native-compilation --with-cairo --with-harfbuzz --with-xml2
--without-compress-install --with-json  CFLAGS="-O2 -mtune=native
-march=native -fomit-frame-pointer -pipe -ftree-vectorize"

I'm seeing this error building emacs as of
621e732ade0f3dc165498ebde4d55d5aacb05b56:

Error: error ("Invalid version syntax: `Eglot 1.10' (must start with a number)")
  mapbacktrace(#f(compiled-function (evald func args flags) #<bytecode
-0x3628af24b9119ba>))
  debug-early-backtrace()
  debug-early(error (error "Invalid version syntax: `Eglot 1.10' (must
start with a number)"))
  error("Invalid version syntax: `%s' (must start with a number)" "Eglot 1.10")
  version-to-list("Eglot 1.10")
  version<("Eglot 1.10" "24.5")
  #f(compiled-function (e1 e2) #<bytecode 0x70981d4f91fa908>)(("Eglot
1.10" eglot) ("24.5" vc-hg erc-stamp mml2015 flyspell erc))





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

* bug#62718: 30.0.50; Eglot compile error due to invalid version syntax
  2023-04-07 20:47 bug#62718: 30.0.50; Eglot compile error due to invalid version syntax Casey Banner
@ 2023-04-07 21:27 ` João Távora
  2023-04-07 21:49   ` João Távora
  0 siblings, 1 reply; 3+ messages in thread
From: João Távora @ 2023-04-07 21:27 UTC (permalink / raw)
  To: Casey Banner; +Cc: 62718

[-- Attachment #1: Type: text/plain, Size: 1137 bytes --]

Ack. Just introduced this, will fix asap.

On Fri, Apr 7, 2023, 21:48 Casey Banner <kcbanner@gmail.com> wrote:

> With the following configuration (building on windows):
>
>  ../configure --prefix=/e/dev/emacs-src --without-dbus --without-pop
> --with-native-compilation --with-cairo --with-harfbuzz --with-xml2
> --without-compress-install --with-json  CFLAGS="-O2 -mtune=native
> -march=native -fomit-frame-pointer -pipe -ftree-vectorize"
>
> I'm seeing this error building emacs as of
> 621e732ade0f3dc165498ebde4d55d5aacb05b56:
>
> Error: error ("Invalid version syntax: `Eglot 1.10' (must start with a
> number)")
>   mapbacktrace(#f(compiled-function (evald func args flags) #<bytecode
> -0x3628af24b9119ba>))
>   debug-early-backtrace()
>   debug-early(error (error "Invalid version syntax: `Eglot 1.10' (must
> start with a number)"))
>   error("Invalid version syntax: `%s' (must start with a number)" "Eglot
> 1.10")
>   version-to-list("Eglot 1.10")
>   version<("Eglot 1.10" "24.5")
>   #f(compiled-function (e1 e2) #<bytecode 0x70981d4f91fa908>)(("Eglot
> 1.10" eglot) ("24.5" vc-hg erc-stamp mml2015 flyspell erc))
>
>
>
>

[-- Attachment #2: Type: text/html, Size: 1609 bytes --]

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

* bug#62718: 30.0.50; Eglot compile error due to invalid version syntax
  2023-04-07 21:27 ` João Távora
@ 2023-04-07 21:49   ` João Távora
  0 siblings, 0 replies; 3+ messages in thread
From: João Távora @ 2023-04-07 21:49 UTC (permalink / raw)
  To: Casey Banner, 62718-done

Should be fixed as of cc288a0e331d09e3e0aebcb83769a513ecad236f.

make succeeds (it didn't fail before for me, but that's maybe
because I wasn't using make bootstrap).  Closing this, but let
me know if you still experience problems.

João

On Fri, Apr 7, 2023 at 10:27 PM João Távora <joaotavora@gmail.com> wrote:
>
> Ack. Just introduced this, will fix asap.
>
> On Fri, Apr 7, 2023, 21:48 Casey Banner <kcbanner@gmail.com> wrote:
>>
>> With the following configuration (building on windows):
>>
>>  ../configure --prefix=/e/dev/emacs-src --without-dbus --without-pop
>> --with-native-compilation --with-cairo --with-harfbuzz --with-xml2
>> --without-compress-install --with-json  CFLAGS="-O2 -mtune=native
>> -march=native -fomit-frame-pointer -pipe -ftree-vectorize"
>>
>> I'm seeing this error building emacs as of
>> 621e732ade0f3dc165498ebde4d55d5aacb05b56:
>>
>> Error: error ("Invalid version syntax: `Eglot 1.10' (must start with a number)")
>>   mapbacktrace(#f(compiled-function (evald func args flags) #<bytecode
>> -0x3628af24b9119ba>))
>>   debug-early-backtrace()
>>   debug-early(error (error "Invalid version syntax: `Eglot 1.10' (must
>> start with a number)"))
>>   error("Invalid version syntax: `%s' (must start with a number)" "Eglot 1.10")
>>   version-to-list("Eglot 1.10")
>>   version<("Eglot 1.10" "24.5")
>>   #f(compiled-function (e1 e2) #<bytecode 0x70981d4f91fa908>)(("Eglot
>> 1.10" eglot) ("24.5" vc-hg erc-stamp mml2015 flyspell erc))
>>
>>
>>


-- 
João Távora





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

end of thread, other threads:[~2023-04-07 21:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-07 20:47 bug#62718: 30.0.50; Eglot compile error due to invalid version syntax Casey Banner
2023-04-07 21:27 ` João Távora
2023-04-07 21:49   ` João Távora

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.