unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* make stuck
@ 2023-10-15  9:35 Pedro Andres Aranda Gutierrez
  2023-10-15  9:41 ` Emanuel Berg
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Pedro Andres Aranda Gutierrez @ 2023-10-15  9:35 UTC (permalink / raw)
  To: emacs-devel

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

Hi,

I'm trying to compile emacs master from a clean git clone and it gets stuck
at

GEN      lisp/eshell/esh-ext-tests.log

Thx, /PA

-- 
Fragen sind nicht da, um beantwortet zu werden,
Fragen sind da um gestellt zu werden
Georg Kreisler

Headaches with a Juju log:
unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
a leader-deposed hook here, but we can't yet

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

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

* Re: make stuck
  2023-10-15  9:35 make stuck Pedro Andres Aranda Gutierrez
@ 2023-10-15  9:41 ` Emanuel Berg
  2023-10-15  9:42 ` Eli Zaretskii
  2023-10-16 21:04 ` Jim Porter
  2 siblings, 0 replies; 7+ messages in thread
From: Emanuel Berg @ 2023-10-15  9:41 UTC (permalink / raw)
  To: emacs-devel

Pedro Andres Aranda Gutierrez wrote:

> I'm trying to compile emacs master from a clean git clone
> and it gets stuck at
>
> GEN      lisp/eshell/esh-ext-tests.log

Run htop(1) in another pane, see if it maybe just works very
hard on that ...

-- 
underground experts united
https://dataswamp.org/~incal




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

* Re: make stuck
  2023-10-15  9:35 make stuck Pedro Andres Aranda Gutierrez
  2023-10-15  9:41 ` Emanuel Berg
@ 2023-10-15  9:42 ` Eli Zaretskii
  2023-10-15  9:49   ` Pedro Andres Aranda Gutierrez
  2023-10-16 21:04 ` Jim Porter
  2 siblings, 1 reply; 7+ messages in thread
From: Eli Zaretskii @ 2023-10-15  9:42 UTC (permalink / raw)
  To: Pedro Andres Aranda Gutierrez; +Cc: emacs-devel

> From: Pedro Andres Aranda Gutierrez <paaguti@gmail.com>
> Date: Sun, 15 Oct 2023 11:35:53 +0200
> 
> I'm trying to compile emacs master from a clean git clone and it gets stuck at
> 
> GEN      lisp/eshell/esh-ext-tests.log

Is this after you say "make check"?  Because otherwise building Emacs
doesn't include that command.



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

* Re: make stuck
  2023-10-15  9:42 ` Eli Zaretskii
@ 2023-10-15  9:49   ` Pedro Andres Aranda Gutierrez
  2023-10-15 10:47     ` Pedro Andres Aranda Gutierrez
  0 siblings, 1 reply; 7+ messages in thread
From: Pedro Andres Aranda Gutierrez @ 2023-10-15  9:49 UTC (permalink / raw)
  To: Eli Zaretskii, emacs-devel

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

Hi Eli,

this is my full process:

$(MAKE) -j2 maintainer-clean distclean
$(RM) -rf native-lisp
./autogen.sh
./configure --prefix=/usr  --program-suffix=30 --with-json \
--with-x --with-x-toolkit=gtk3 --with-cairo  \
--with-compress-install --with-modules=yes \
--with-threads --with-included-regex --with-zlib \
--with-tree-sitter=no --with-native-compilation=ye
$(MAKE) NATIVE_FULL_AOT=1 -j2
$(MAKE) -j2 -C test || true

Gets stuck in the last step

Best, /PA

On Sun, 15 Oct 2023 at 11:42, Eli Zaretskii <eliz@gnu.org> wrote:

> > From: Pedro Andres Aranda Gutierrez <paaguti@gmail.com>
> > Date: Sun, 15 Oct 2023 11:35:53 +0200
> >
> > I'm trying to compile emacs master from a clean git clone and it gets
> stuck at
> >
> > GEN      lisp/eshell/esh-ext-tests.log
>
> Is this after you say "make check"?  Because otherwise building Emacs
> doesn't include that command.
>


-- 
Fragen sind nicht da, um beantwortet zu werden,
Fragen sind da um gestellt zu werden
Georg Kreisler

Headaches with a Juju log:
unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
a leader-deposed hook here, but we can't yet

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

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

* Re: make stuck
  2023-10-15  9:49   ` Pedro Andres Aranda Gutierrez
@ 2023-10-15 10:47     ` Pedro Andres Aranda Gutierrez
  2023-10-16 10:22       ` Pedro Andres Aranda Gutierrez
  0 siblings, 1 reply; 7+ messages in thread
From: Pedro Andres Aranda Gutierrez @ 2023-10-15 10:47 UTC (permalink / raw)
  To: Eli Zaretskii, emacs-devel

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

Confirmed it is in the make test step

On Sun, 15 Oct 2023 at 11:49, Pedro Andres Aranda Gutierrez <
paaguti@gmail.com> wrote:

> Hi Eli,
>
> this is my full process:
>
> $(MAKE) -j2 maintainer-clean distclean
> $(RM) -rf native-lisp
> ./autogen.sh
> ./configure --prefix=/usr  --program-suffix=30 --with-json \
> --with-x --with-x-toolkit=gtk3 --with-cairo  \
> --with-compress-install --with-modules=yes \
> --with-threads --with-included-regex --with-zlib \
> --with-tree-sitter=no --with-native-compilation=ye
> $(MAKE) NATIVE_FULL_AOT=1 -j2
> $(MAKE) -j2 -C test || true
>
> Gets stuck in the last step
>
> Best, /PA
>
> On Sun, 15 Oct 2023 at 11:42, Eli Zaretskii <eliz@gnu.org> wrote:
>
>> > From: Pedro Andres Aranda Gutierrez <paaguti@gmail.com>
>> > Date: Sun, 15 Oct 2023 11:35:53 +0200
>> >
>> > I'm trying to compile emacs master from a clean git clone and it gets
>> stuck at
>> >
>> > GEN      lisp/eshell/esh-ext-tests.log
>>
>> Is this after you say "make check"?  Because otherwise building Emacs
>> doesn't include that command.
>>
>
>
> --
> Fragen sind nicht da, um beantwortet zu werden,
> Fragen sind da um gestellt zu werden
> Georg Kreisler
>
> Headaches with a Juju log:
> unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
> a leader-deposed hook here, but we can't yet
>
>

-- 
Fragen sind nicht da, um beantwortet zu werden,
Fragen sind da um gestellt zu werden
Georg Kreisler

Headaches with a Juju log:
unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
a leader-deposed hook here, but we can't yet

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

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

* Re: make stuck
  2023-10-15 10:47     ` Pedro Andres Aranda Gutierrez
@ 2023-10-16 10:22       ` Pedro Andres Aranda Gutierrez
  0 siblings, 0 replies; 7+ messages in thread
From: Pedro Andres Aranda Gutierrez @ 2023-10-16 10:22 UTC (permalink / raw)
  To: Eli Zaretskii, emacs-devel

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

Hi again

is it normal to have a test last more than 23 mins ????
I'm filing a bug
/PA

On Sun, 15 Oct 2023 at 12:47, Pedro Andres Aranda Gutierrez <
paaguti@gmail.com> wrote:

> Confirmed it is in the make test step
>
> On Sun, 15 Oct 2023 at 11:49, Pedro Andres Aranda Gutierrez <
> paaguti@gmail.com> wrote:
>
>> Hi Eli,
>>
>> this is my full process:
>>
>> $(MAKE) -j2 maintainer-clean distclean
>> $(RM) -rf native-lisp
>> ./autogen.sh
>> ./configure --prefix=/usr  --program-suffix=30 --with-json \
>> --with-x --with-x-toolkit=gtk3 --with-cairo  \
>> --with-compress-install --with-modules=yes \
>> --with-threads --with-included-regex --with-zlib \
>> --with-tree-sitter=no --with-native-compilation=ye
>> $(MAKE) NATIVE_FULL_AOT=1 -j2
>> $(MAKE) -j2 -C test || true
>>
>> Gets stuck in the last step
>>
>> Best, /PA
>>
>> On Sun, 15 Oct 2023 at 11:42, Eli Zaretskii <eliz@gnu.org> wrote:
>>
>>> > From: Pedro Andres Aranda Gutierrez <paaguti@gmail.com>
>>> > Date: Sun, 15 Oct 2023 11:35:53 +0200
>>> >
>>> > I'm trying to compile emacs master from a clean git clone and it gets
>>> stuck at
>>> >
>>> > GEN      lisp/eshell/esh-ext-tests.log
>>>
>>> Is this after you say "make check"?  Because otherwise building Emacs
>>> doesn't include that command.
>>>
>>
>>
>> --
>> Fragen sind nicht da, um beantwortet zu werden,
>> Fragen sind da um gestellt zu werden
>> Georg Kreisler
>>
>> Headaches with a Juju log:
>> unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should
>> run a leader-deposed hook here, but we can't yet
>>
>>
>
> --
> Fragen sind nicht da, um beantwortet zu werden,
> Fragen sind da um gestellt zu werden
> Georg Kreisler
>
> Headaches with a Juju log:
> unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
> a leader-deposed hook here, but we can't yet
>
>

-- 
Fragen sind nicht da, um beantwortet zu werden,
Fragen sind da um gestellt zu werden
Georg Kreisler

Headaches with a Juju log:
unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
a leader-deposed hook here, but we can't yet

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

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

* Re: make stuck
  2023-10-15  9:35 make stuck Pedro Andres Aranda Gutierrez
  2023-10-15  9:41 ` Emanuel Berg
  2023-10-15  9:42 ` Eli Zaretskii
@ 2023-10-16 21:04 ` Jim Porter
  2 siblings, 0 replies; 7+ messages in thread
From: Jim Porter @ 2023-10-16 21:04 UTC (permalink / raw)
  To: Pedro Andres Aranda Gutierrez, emacs-devel

On 10/15/2023 2:35 AM, Pedro Andres Aranda Gutierrez wrote:
> Hi,
> 
> I'm trying to compile emacs master from a clean git clone and it gets 
> stuck at
> 
> GEN      lisp/eshell/esh-ext-tests.log

Mentioned on the bug report, but I believe I've fixed this with commit 
266ed1b8477. Eshell was still using the old calling convention for 
'sit-for', so things broke when that calling convention got removed.



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

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

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-15  9:35 make stuck Pedro Andres Aranda Gutierrez
2023-10-15  9:41 ` Emanuel Berg
2023-10-15  9:42 ` Eli Zaretskii
2023-10-15  9:49   ` Pedro Andres Aranda Gutierrez
2023-10-15 10:47     ` Pedro Andres Aranda Gutierrez
2023-10-16 10:22       ` Pedro Andres Aranda Gutierrez
2023-10-16 21:04 ` Jim Porter

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