unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#53415: binutils-mesboot1-2.14 configure phase fails, In procedure stat: No such file or directory: "config.status"
@ 2022-01-21 17:00 Christopher Baines
  2022-01-25 22:42 ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Christopher Baines @ 2022-01-21 17:00 UTC (permalink / raw)
  To: 53415

I've seen this failure consistently on one of the machines behind
bordeaux.guix.gnu.org, you can see the full logs via following the "View
build" links here [1].

1: http://data.guix.gnu.org/gnu/store/xd8rnmr0k3fhfhilzi66hnggsnx67d5i-binutils-mesboot1-2.14.drv

I've tried building multiple times on the machine where the failures
occurred, and it's not once succeeded.

From looking at the kept build directory, the config.status file doesn't
exist. There is config.status.VX1nZz, but it's empty.



starting phase `configure'
running ./configure --disable-nls --disable-shared --disable-werror --build=i686-unknown-linux-gnu --host=i686-unknown-linux-gnu --with-sysroot=/ --prefix=/gnu/store/gvmha2v54svwzxigcbap8862rg3fya0w-binutils-mesboot1-2.14
error: in phase 'configure': uncaught exception:
system-error "stat" "~A: ~S" ("No such file or directory" "config.status") (2) 
phase `configure' failed after 0.0 seconds
Backtrace:
In ice-9/boot-9.scm:
 157: 16 [catch #t #<catch-closure c93c40> ...]
In unknown file:
   ?: 15 [apply-smob/1 #<catch-closure c93c40>]
In ice-9/boot-9.scm:
  63: 14 [call-with-prompt prompt0 ...]
In ice-9/eval.scm:
 432: 13 [eval # #]
In ice-9/boot-9.scm:
2320: 12 [save-module-excursion #<procedure cc1b00 at ice-9/boot-9.scm:3961:3 ()>]
3966: 11 [#<procedure cc1b00 at ice-9/boot-9.scm:3961:3 ()>]
1645: 10 [%start-stack load-stack #<procedure cc2ba0 at ice-9/boot-9.scm:3957:10 ()>]
1650: 9 [#<procedure cc8db0 ()>]
In unknown file:
   ?: 8 [primitive-load "/gnu/store/6i3748r9if4cnjz1bmzh2ghbp0zlv232-binutils-mesboot1-2.14-builder"]
In ice-9/boot-9.scm:
 157: 7 [catch srfi-34 ...]
In srfi/srfi-1.scm:
 616: 6 [for-each #<procedure 11a5f60 at guix/build/gnu-build-system.scm:911:14 (expr)> ...]
In ice-9/boot-9.scm:
 171: 5 [with-throw-handler #t ...]
In guix/build/gnu-build-system.scm:
 927: 4 [#<procedure 177ce00 at guix/build/gnu-build-system.scm:926:21 ()>]
In ice-9/eval.scm:
 432: 3 [eval # #]
In guix/build/utils.scm:
 844: 2 [with-atomic-file-replacement "config.status" ...]
In unknown file:
   ?: 1 [stat "config.status" #<undefined>]
In ice-9/boot-9.scm:
 106: 0 [#<procedure 177cdc0 at ice-9/boot-9.scm:97:6 (thrown-k . args)> system-error ...]

ice-9/boot-9.scm:106:20: In procedure #<procedure 177cdc0 at ice-9/boot-9.scm:97:6 (thrown-k . args)>:
ice-9/boot-9.scm:106:20: In procedure stat: No such file or directory: "config.status"
builder for `/gnu/store/xd8rnmr0k3fhfhilzi66hnggsnx67d5i-binutils-mesboot1-2.14.drv' failed with exit code 1




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

* bug#53415: binutils-mesboot1-2.14 configure phase fails, In procedure stat: No such file or directory: "config.status"
  2022-01-21 17:00 bug#53415: binutils-mesboot1-2.14 configure phase fails, In procedure stat: No such file or directory: "config.status" Christopher Baines
@ 2022-01-25 22:42 ` Ludovic Courtès
  2022-01-31 19:38   ` Christopher Baines
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2022-01-25 22:42 UTC (permalink / raw)
  To: Christopher Baines; +Cc: 53415

Hi,

Christopher Baines <mail@cbaines.net> skribis:

> I've seen this failure consistently on one of the machines behind
> bordeaux.guix.gnu.org, you can see the full logs via following the "View
> build" links here [1].
>
> 1: http://data.guix.gnu.org/gnu/store/xd8rnmr0k3fhfhilzi66hnggsnx67d5i-binutils-mesboot1-2.14.drv
>
> I've tried building multiple times on the machine where the failures
> occurred, and it's not once succeeded.
>
>>From looking at the kept build directory, the config.status file doesn't
> exist. There is config.status.VX1nZz, but it's empty.
>
>
>
> starting phase `configure'
> running ./configure --disable-nls --disable-shared --disable-werror --build=i686-unknown-linux-gnu --host=i686-unknown-linux-gnu --with-sysroot=/ --prefix=/gnu/store/gvmha2v54svwzxigcbap8862rg3fya0w-binutils-mesboot1-2.14
> error: in phase 'configure': uncaught exception:
> system-error "stat" "~A: ~S" ("No such file or directory" "config.status") (2) 
> phase `configure' failed after 0.0 seconds

I just tried this on my laptop:

  guix build \
    /gnu/store/xd8rnmr0k3fhfhilzi66hnggsnx67d5i-binutils-mesboot1-2.14.drv \
    --check

and the ‘configure’ phase completes without problems.  I have:

--8<---------------cut here---------------start------------->8---
$ uname -srv
Linux 5.15.12-gnu #1 SMP 1
--8<---------------cut here---------------end--------------->8---

This reminds me of:

  https://issues.guix.gnu.org/49985
  https://issues.guix.gnu.org/45165

Could it be something with the kernel options, as discussed at
<https://issues.guix.gnu.org/45165#16>?

Thanks,
Ludo’.




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

* bug#53415: binutils-mesboot1-2.14 configure phase fails, In procedure stat: No such file or directory: "config.status"
  2022-01-25 22:42 ` Ludovic Courtès
@ 2022-01-31 19:38   ` Christopher Baines
  0 siblings, 0 replies; 3+ messages in thread
From: Christopher Baines @ 2022-01-31 19:38 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 53415


[-- Attachment #1.1: Type: text/plain, Size: 2386 bytes --]


Ludovic Courtès <ludo@gnu.org> writes:

> Hi,
>
> Christopher Baines <mail@cbaines.net> skribis:
>
>> I've seen this failure consistently on one of the machines behind
>> bordeaux.guix.gnu.org, you can see the full logs via following the "View
>> build" links here [1].
>>
>> 1: http://data.guix.gnu.org/gnu/store/xd8rnmr0k3fhfhilzi66hnggsnx67d5i-binutils-mesboot1-2.14.drv
>>
>> I've tried building multiple times on the machine where the failures
>> occurred, and it's not once succeeded.
>>
>>>From looking at the kept build directory, the config.status file doesn't
>> exist. There is config.status.VX1nZz, but it's empty.
>>
>>
>>
>> starting phase `configure'
>> running ./configure --disable-nls --disable-shared --disable-werror
>> --build=i686-unknown-linux-gnu --host=i686-unknown-linux-gnu
>> --with-sysroot=/
>> --prefix=/gnu/store/gvmha2v54svwzxigcbap8862rg3fya0w-binutils-mesboot1-2.14
>> error: in phase 'configure': uncaught exception:
>> system-error "stat" "~A: ~S" ("No such file or directory" "config.status") (2) 
>> phase `configure' failed after 0.0 seconds
>
> I just tried this on my laptop:
>
>   guix build \
>     /gnu/store/xd8rnmr0k3fhfhilzi66hnggsnx67d5i-binutils-mesboot1-2.14.drv \
>     --check
>
> and the ‘configure’ phase completes without problems.  I have:
>
> $ uname -srv
> Linux 5.15.12-gnu #1 SMP 1
>
> This reminds me of:
>
>   https://issues.guix.gnu.org/49985
>   https://issues.guix.gnu.org/45165
>
> Could it be something with the kernel options, as discussed at
> <https://issues.guix.gnu.org/45165#16>?

I was on the following Linux from Guix revision
fe58f05b2482fd45c41fe324ac0d393093dc163e:

Linux 5.15.13-gnu #1 SMP 1

I've tried reconfiguring with f8633a739511e8d5bef93b18b346efb69b91ac8e
which provides Linux 5.15.12, but I see the same behaviour.

Looking at the successful build log, I've realised that the ./configure
script is probably crashing, not producing the config.status file, which
is causing the exception seen.

I've tried stracing everything, and attached the portion from around
where ./configure starts, to the Guile exception for the end of the
build.

I did notice some suspicious looking bits like the following:

stat("/tmp/guix-build-binutils-mesboot1-2.14.drv-0", 0xffffd058) = -1 EOVERFLOW (Value too large for defined data type)


[-- Attachment #1.2: binutils-mesboot1-strace --]
[-- Type: text/plain, Size: 21661 bytes --]

502   write(2, "running ./configure --disable-nl"..., 222 <unfinished ...>
500   <... read resumed>"starting phase `configure'\n", 4096) = 27
502   <... write resumed>)              = 222
502   rt_sigaction(SIGINT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x4d4b10},  <unfinished ...>
500   write(4, "gmlo\0\0\0\0.\0\0\0\0\0\0\0@ build-log 502 "..., 64 <unfinished ...>
502   <... rt_sigaction resumed>{sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x4d4b10}, 8) = 0
502   rt_sigaction(SIGQUIT, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x4d4b10},  <unfinished ...>
500   <... write resumed>)              = 64
502   <... rt_sigaction resumed>{sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x4d4b10}, 8) = 0
500   pselect6(13, [12], NULL, NULL, {tv_sec=43200, tv_nsec=0}, NULL <unfinished ...>
502   clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD <unfinished ...>
500   <... pselect6 resumed>)           = 1 (in [12], left {tv_sec=43199, tv_nsec=999995669})
500   read(12, "running ./configure --disable-nl"..., 4096) = 222
500   write(4, "gmlo\0\0\0\0\362\0\0\0\0\0\0\0@ build-log 502 "..., 264) = 264
500   pselect6(13, [12], NULL, NULL, {tv_sec=43200, tv_nsec=0}, NULL <unfinished ...>
515   set_robust_list(0xa2eb60, 24 <unfinished ...>
502   <... clone resumed>, child_tidptr=0xa2eb50) = 14
515   <... set_robust_list resumed>)    = 0
515   execve("./configure", ["./configure", "--disable-nls", "--disable-shared", "--disable-werror", "--build=i686-unknown-linux-gnu", "--host=i686-unknown-linux-gnu", "--with-sysroot=/", "--prefix=/gnu/store/gvmha2v54svw"...], 0x1467930 /* 19 vars */ <unfinished ...>
502   wait4(14,  <unfinished ...>
515   <... execve resumed>)             = 0
515   [ Process PID=515 runs in 32 bit mode. ]
515   open("/dev/tty", O_RDWR)          = -1 ENXIO (No such device or address)
515   ioctl(0, TCGETS, 0xffffd180)      = -1 ENOTTY (Inappropriate ioctl for device)
515   brk(NULL)                         = 0x80b6000
515   brk(0x80b6002)                    = 0x80b6002
515   getuid()                          = 999
515   getgid()                          = 30000
515   geteuid()                         = 999
515   getegid()                         = 30000
515   brk(0x80b6049)                    = 0x80b6049
515   time(NULL)                        = 1643658451 (2022-01-31T19:47:31+0000)
515   brk(0x80b6139)                    = 0x80b6139
515   brk(0x80b6229)                    = 0x80b6229
515   sigprocmask(SIG_BLOCK, NULL, [])  = 0
515   brk(0x80b6231)                    = 0x80b6231
515   brk(0x80b623d)                    = 0x80b623d
515   brk(0x80b6249)                    = 0x80b6249
515   brk(0x80b6261)                    = 0x80b6261
515   brk(0x80b626d)                    = 0x80b626d
515   brk(0x80b636d)                    = 0x80b636d
515   brk(0x80b6379)                    = 0x80b6379
515   brk(0x80b6479)                    = 0x80b6479
515   brk(0x80b6495)                    = 0x80b6495
515   brk(0x80b64b0)                    = 0x80b64b0
515   brk(0x80b64cb)                    = 0x80b64cb
515   brk(0x80b64df)                    = 0x80b64df
515   brk(0x80b6534)                    = 0x80b6534
515   brk(0x80b65a4)                    = 0x80b65a4
515   brk(0x80b65c0)                    = 0x80b65c0
515   brk(0x80b65c7)                    = 0x80b65c7
515   brk(0x80b65ce)                    = 0x80b65ce
515   brk(0x80b65e2)                    = 0x80b65e2
515   brk(0x80b660f)                    = 0x80b660f
515   brk(0x80b6643)                    = 0x80b6643
515   brk(0x80b665f)                    = 0x80b665f
515   brk(0x80b6664)                    = 0x80b6664
515   brk(0x80b6669)                    = 0x80b6669
515   brk(0x80b667d)                    = 0x80b667d
515   brk(0x80b66aa)                    = 0x80b66aa
515   brk(0x80b66dc)                    = 0x80b66dc
515   brk(0x80b66f8)                    = 0x80b66f8
515   brk(0x80b6702)                    = 0x80b6702
515   brk(0x80b670c)                    = 0x80b670c
515   brk(0x80b6720)                    = 0x80b6720
515   brk(0x80b672b)                    = 0x80b672b
515   brk(0x80b6740)                    = 0x80b6740
515   brk(0x80b675c)                    = 0x80b675c
515   brk(0x80b6761)                    = 0x80b6761
515   brk(0x80b6766)                    = 0x80b6766
515   brk(0x80b677a)                    = 0x80b677a
515   brk(0x80b6b6c)                    = 0x80b6b6c
515   brk(0x80b6f63)                    = 0x80b6f63
515   brk(0x80b6f7f)                    = 0x80b6f7f
515   brk(0x80b6f87)                    = 0x80b6f87
515   brk(0x80b6f8f)                    = 0x80b6f8f
515   brk(0x80b6fa3)                    = 0x80b6fa3
515   brk(0x80b6fd0)                    = 0x80b6fd0
515   brk(0x80b7005)                    = 0x80b7005
515   brk(0x80b7021)                    = 0x80b7021
515   brk(0x80b702f)                    = 0x80b702f
515   brk(0x80b703d)                    = 0x80b703d
515   brk(0x80b7051)                    = 0x80b7051
515   brk(0x80b707e)                    = 0x80b707e
515   brk(0x80b70b9)                    = 0x80b70b9
515   brk(0x80b70d5)                    = 0x80b70d5
515   brk(0x80b70d9)                    = 0x80b70d9
515   brk(0x80b70dd)                    = 0x80b70dd
515   brk(0x80b70f1)                    = 0x80b70f1
515   brk(0x80b711e)                    = 0x80b711e
515   brk(0x80b714f)                    = 0x80b714f
515   brk(0x80b716b)                    = 0x80b716b
515   brk(0x80b716f)                    = 0x80b716f
515   brk(0x80b7173)                    = 0x80b7173
515   brk(0x80b7187)                    = 0x80b7187
515   brk(0x80b71ca)                    = 0x80b71ca
515   brk(0x80b7211)                    = 0x80b7211
515   brk(0x80b722d)                    = 0x80b722d
515   brk(0x80b7233)                    = 0x80b7233
515   brk(0x80b7239)                    = 0x80b7239
515   brk(0x80b724d)                    = 0x80b724d
515   brk(0x80b724f)                    = 0x80b724f
515   brk(0x80b7257)                    = 0x80b7257
515   brk(0x80b7273)                    = 0x80b7273
515   brk(0x80b7278)                    = 0x80b7278
515   brk(0x80b727d)                    = 0x80b727d
515   brk(0x80b7291)                    = 0x80b7291
515   brk(0x80b72a3)                    = 0x80b72a3
515   brk(0x80b72ba)                    = 0x80b72ba
515   brk(0x80b72d6)                    = 0x80b72d6
515   brk(0x80b72e8)                    = 0x80b72e8
515   brk(0x80b72fa)                    = 0x80b72fa
515   brk(0x80b730e)                    = 0x80b730e
515   brk(0x80b735e)                    = 0x80b735e
515   brk(0x80b73c0)                    = 0x80b73c0
515   brk(0x80b73dc)                    = 0x80b73dc
515   brk(0x80b73e0)                    = 0x80b73e0
515   brk(0x80b73e4)                    = 0x80b73e4
515   brk(0x80b73f8)                    = 0x80b73f8
515   brk(0x80b7425)                    = 0x80b7425
515   brk(0x80b7456)                    = 0x80b7456
515   brk(0x80b7472)                    = 0x80b7472
515   brk(0x80b7482)                    = 0x80b7482
515   brk(0x80b7492)                    = 0x80b7492
515   brk(0x80b74a6)                    = 0x80b74a6
515   brk(0x80b74a8)                    = 0x80b74a8
515   brk(0x80b74ba)                    = 0x80b74ba
515   brk(0x80b74d6)                    = 0x80b74d6
515   brk(0x80b74e8)                    = 0x80b74e8
515   brk(0x80b74fa)                    = 0x80b74fa
515   brk(0x80b750e)                    = 0x80b750e
515   brk(0x80b7510)                    = 0x80b7510
515   brk(0x80b7524)                    = 0x80b7524
515   brk(0x80b7540)                    = 0x80b7540
515   brk(0x80b7561)                    = 0x80b7561
515   brk(0x80b7582)                    = 0x80b7582
515   brk(0x80b7596)                    = 0x80b7596
515   brk(0x80b7599)                    = 0x80b7599
515   brk(0x80b75bd)                    = 0x80b75bd
515   brk(0x80b75d9)                    = 0x80b75d9
515   brk(0x80b75e8)                    = 0x80b75e8
515   brk(0x80b75f7)                    = 0x80b75f7
515   brk(0x80b760b)                    = 0x80b760b
515   brk(0x80b77f5)                    = 0x80b77f5
515   brk(0x80b79ee)                    = 0x80b79ee
515   brk(0x80b7a0a)                    = 0x80b7a0a
515   brk(0x80b7a17)                    = 0x80b7a17
515   brk(0x80b7a24)                    = 0x80b7a24
515   brk(0x80b7a38)                    = 0x80b7a38
515   brk(0x80b7c50)                    = 0x80b7c50
515   brk(0x80b7e75)                    = 0x80b7e75
515   brk(0x80b7e91)                    = 0x80b7e91
515   brk(0x80b7e9e)                    = 0x80b7e9e
515   brk(0x80b7eab)                    = 0x80b7eab
515   brk(0x80b7ebf)                    = 0x80b7ebf
515   brk(0x80b7f08)                    = 0x80b7f08
515   brk(0x80b7f5e)                    = 0x80b7f5e
515   stat("/tmp/guix-build-binutils-mesboot1-2.14.drv-0", 0xffffd058) = -1 EOVERFLOW (Value too large for defined data type)
515   brk(0x80b835e)                    = 0x80b835e
515   getcwd("/tmp/guix-build-binutils-mesboot1-2.14.drv-0/binutils-2.14", 1024) = 59
515   brk(0x80b8399)                    = 0x80b8399
515   brk(0x80b83d4)                    = 0x80b83d4
515   brk(0x80b83f0)                    = 0x80b83f0
515   brk(0x80b83f7)                    = 0x80b83f7
515   brk(0x80b83fe)                    = 0x80b83fe
515   brk(0x80b8412)                    = 0x80b8412
515   brk(0x80b842e)                    = 0x80b842e
515   brk(0x80b8430)                    = 0x80b8430
515   brk(0x80b8432)                    = 0x80b8432
515   brk(0x80b8446)                    = 0x80b8446
515   brk(0x80b848d)                    = 0x80b848d
515   getpid()                          = 14
515   brk(0x80b84a9)                    = 0x80b84a9
515   brk(0x80b84ae)                    = 0x80b84ae
515   brk(0x80b84b3)                    = 0x80b84b3
515   brk(0x80b84c7)                    = 0x80b84c7
515   brk(0x80b84cc)                    = 0x80b84cc
515   brk(0x80b84e8)                    = 0x80b84e8
515   brk(0x80b84ec)                    = 0x80b84ec
515   brk(0x80b84f0)                    = 0x80b84f0
515   brk(0x80b8504)                    = 0x80b8504
515   brk(0x80b8507)                    = 0x80b8507
515   brk(0x80b8523)                    = 0x80b8523
515   brk(0x80b8527)                    = 0x80b8527
515   brk(0x80b852b)                    = 0x80b852b
515   brk(0x80b853f)                    = 0x80b853f
515   brk(0x80b8543)                    = 0x80b8543
515   brk(0x80b855f)                    = 0x80b855f
515   brk(0x80b8568)                    = 0x80b8568
515   brk(0x80b8571)                    = 0x80b8571
515   brk(0x80b8585)                    = 0x80b8585
515   brk(0x80b858a)                    = 0x80b858a
515   brk(0x80b85a6)                    = 0x80b85a6
515   brk(0x80b85ad)                    = 0x80b85ad
515   brk(0x80b85b4)                    = 0x80b85b4
515   brk(0x80b85c8)                    = 0x80b85c8
515   brk(0x80b85d2)                    = 0x80b85d2
515   brk(0x80b85ee)                    = 0x80b85ee
515   brk(0x80b85f7)                    = 0x80b85f7
515   brk(0x80b8600)                    = 0x80b8600
515   brk(0x80b8614)                    = 0x80b8614
515   brk(0x80b862b)                    = 0x80b862b
515   brk(0x80b8647)                    = 0x80b8647
515   brk(0x80b8650)                    = 0x80b8650
515   brk(0x80b8659)                    = 0x80b8659
515   brk(0x80b866d)                    = 0x80b866d
515   brk(0x80b8675)                    = 0x80b8675
515   brk(0x80b8677)                    = 0x80b8677
515   getppid()                         = 1
515   brk(0x80b8693)                    = 0x80b8693
515   brk(0x80b8698)                    = 0x80b8698
515   brk(0x80b869d)                    = 0x80b869d
515   brk(0x80b86b1)                    = 0x80b86b1
515   brk(0x80b86b3)                    = 0x80b86b3
515   brk(0x80b86cf)                    = 0x80b86cf
515   brk(0x80b86d6)                    = 0x80b86d6
515   brk(0x80b86dd)                    = 0x80b86dd
515   brk(0x80b86f1)                    = 0x80b86f1
515   brk(0x80b86f3)                    = 0x80b86f3
515   brk(0x80b870f)                    = 0x80b870f
515   brk(0x80b8716)                    = 0x80b8716
515   brk(0x80b871d)                    = 0x80b871d
515   brk(0x80b8731)                    = 0x80b8731
515   brk(0x80b8733)                    = 0x80b8733
515   brk(0x80b877a)                    = 0x80b877a
515   brk(0x80b8796)                    = 0x80b8796
515   brk(0x80b879b)                    = 0x80b879b
515   brk(0x80b87a0)                    = 0x80b87a0
515   brk(0x80b87b4)                    = 0x80b87b4
515   brk(0x80b87fb)                    = 0x80b87fb
515   brk(0x80b8800)                    = 0x80b8800
515   brk(0x80b8808)                    = 0x80b8808
515   brk(0x80b880e)                    = 0x80b880e
515   brk(0x80b882a)                    = 0x80b882a
515   brk(0x80b8830)                    = 0x80b8830
515   brk(0x80b8836)                    = 0x80b8836
515   brk(0x80b884a)                    = 0x80b884a
515   brk(0x80b8852)                    = 0x80b8852
515   brk(0x80b886e)                    = 0x80b886e
515   brk(0x80b887b)                    = 0x80b887b
515   brk(0x80b8888)                    = 0x80b8888
515   brk(0x80b889c)                    = 0x80b889c
515   brk(0x80b88af)                    = 0x80b88af
515   brk(0x80b88cb)                    = 0x80b88cb
515   brk(0x80b88d9)                    = 0x80b88d9
515   brk(0x80b88e7)                    = 0x80b88e7
515   brk(0x80b88fb)                    = 0x80b88fb
515   brk(0x80b890b)                    = 0x80b890b
515   brk(0x80b891b)                    = 0x80b891b
515   brk(0x80b892b)                    = 0x80b892b
515   brk(0x80b892d)                    = 0x80b892d
515   brk(0x80b893d)                    = 0x80b893d
515   brk(0x80b8941)                    = 0x80b8941
515   brk(0x80b8951)                    = 0x80b8951
515   brk(0x80b8953)                    = 0x80b8953
515   brk(0x80b8963)                    = 0x80b8963
515   brk(0x80b8965)                    = 0x80b8965
515   brk(0x80b8975)                    = 0x80b8975
515   brk(0x80b897d)                    = 0x80b897d
515   brk(0x80b898d)                    = 0x80b898d
515   brk(0x80b89a4)                    = 0x80b89a4
515   brk(0x80b89c0)                    = 0x80b89c0
515   brk(0x80b89c4)                    = 0x80b89c4
515   brk(0x80b89c8)                    = 0x80b89c8
515   brk(0x80b89dc)                    = 0x80b89dc
515   brk(0x80b89e0)                    = 0x80b89e0
515   brk(0x80b89fc)                    = 0x80b89fc
515   brk(0x80b8a01)                    = 0x80b8a01
515   brk(0x80b8a06)                    = 0x80b8a06
515   brk(0x80b8a1a)                    = 0x80b8a1a
515   brk(0x80b8a1e)                    = 0x80b8a1e
515   brk(0x80b8a3a)                    = 0x80b8a3a
515   brk(0x80b8a42)                    = 0x80b8a42
515   brk(0x80b8a4a)                    = 0x80b8a4a
515   brk(0x80b8a5e)                    = 0x80b8a5e
515   brk(0x80b8a7a)                    = 0x80b8a7a
515   brk(0x80b8a81)                    = 0x80b8a81
515   brk(0x80b8a88)                    = 0x80b8a88
515   brk(0x80b8a9c)                    = 0x80b8a9c
515   brk(0x80b8ab8)                    = 0x80b8ab8
515   brk(0x80b8abf)                    = 0x80b8abf
515   brk(0x80b8ac6)                    = 0x80b8ac6
515   brk(0x80b8ada)                    = 0x80b8ada
515   brk(0x80b8af6)                    = 0x80b8af6
515   brk(0x80b8afe)                    = 0x80b8afe
515   brk(0x80b8b06)                    = 0x80b8b06
515   brk(0x80b8b1a)                    = 0x80b8b1a
515   brk(0x80b8b36)                    = 0x80b8b36
515   brk(0x80b8b3f)                    = 0x80b8b3f
515   brk(0x80b8b48)                    = 0x80b8b48
515   brk(0x80b8b5c)                    = 0x80b8b5c
515   brk(0x80b8b6c)                    = 0x80b8b6c
515   brk(0x80b8b7c)                    = 0x80b8b7c
515   brk(0x80b8b98)                    = 0x80b8b98
515   brk(0x80b8b9f)                    = 0x80b8b9f
515   brk(0x80b8ba6)                    = 0x80b8ba6
515   brk(0x80b8bba)                    = 0x80b8bba
515   brk(0x80b8bca)                    = 0x80b8bca
515   brk(0x80b8bda)                    = 0x80b8bda
515   brk(0x80b8bf6)                    = 0x80b8bf6
515   brk(0x80b8bff)                    = 0x80b8bff
515   brk(0x80b8c08)                    = 0x80b8c08
515   brk(0x80b8c1c)                    = 0x80b8c1c
515   brk(0x80b8c46)                    = 0x80b8c46
515   brk(0x80b8c62)                    = 0x80b8c62
515   brk(0x80b8c6c)                    = 0x80b8c6c
515   brk(0x80b8c76)                    = 0x80b8c76
515   brk(0x80b8c8a)                    = 0x80b8c8a
515   brk(0x80b8cb3)                    = 0x80b8cb3
515   brk(0x80b8ccf)                    = 0x80b8ccf
515   brk(0x80b8cdf)                    = 0x80b8cdf
515   brk(0x80b8cef)                    = 0x80b8cef
515   brk(0x80b8d03)                    = 0x80b8d03
515   brk(0x80b8d05)                    = 0x80b8d05
515   brk(0x80b8d35)                    = 0x80b8d35
515   brk(0x80b8d64)                    = 0x80b8d64
515   brk(0x80b8d70)                    = 0x80b8d70
515   brk(0x80b8d7c)                    = 0x80b8d7c
515   open("./configure", O_RDONLY)     = 3
515   brk(0x80c957c)                    = 0x80c957c
515   ioctl(3, TCGETS, 0xffffd0e8)      = -1 ENOTTY (Inappropriate ioctl for device)
515   lseek(3, 0, SEEK_CUR)             = 0
515   lseek(3, 0, SEEK_CUR)             = 0
515   read(3, "#!/gnu/store/nqw8qcnxqkkfhsm56xg"..., 128) = 128
515   lseek(3, 0, SEEK_CUR)             = 128
515   lseek(3, 0, SEEK_SET)             = 0
515   dup2(3, 19)                       = 19
515   close(3)                          = 0
515   fcntl(19, F_SETFD, FD_CLOEXEC)    = 0
515   fcntl(19, F_GETFL)                = 0 (flags O_RDONLY)
515   fstat(19, 0xffffd190)             = -1 EOVERFLOW (Value too large for defined data type)
515   close(19)                         = 0
515   brk(0x80c9588)                    = 0x80c9588
515   brk(0x80c9590)                    = 0x80c9590
515   brk(0x80c959e)                    = 0x80c959e
515   brk(0x80c95a6)                    = 0x80c95a6
515   brk(0x80c95ae)                    = 0x80c95ae
515   brk(0x80c95bf)                    = 0x80c95bf
515   brk(0x80c95c7)                    = 0x80c95c7
515   brk(0x80c95cf)                    = 0x80c95cf
515   brk(0x80c95e0)                    = 0x80c95e0
515   brk(0x80c95e8)                    = 0x80c95e8
515   brk(0x80c95f0)                    = 0x80c95f0
515   brk(0x80c960f)                    = 0x80c960f
515   brk(0x80c9617)                    = 0x80c9617
515   brk(0x80c961f)                    = 0x80c961f
515   brk(0x80c963d)                    = 0x80c963d
515   brk(0x80c9645)                    = 0x80c9645
515   brk(0x80c964d)                    = 0x80c964d
515   brk(0x80c965e)                    = 0x80c965e
515   brk(0x80c9666)                    = 0x80c9666
515   brk(0x80c966e)                    = 0x80c966e
515   brk(0x80c96ba)                    = 0x80c96ba
515   brk(0x80c96c2)                    = 0x80c96c2
515   brk(0x80c96d0)                    = 0x80c96d0
515   brk(0x80c96e1)                    = 0x80c96e1
515   brk(0x80c96f2)                    = 0x80c96f2
515   brk(0x80c9711)                    = 0x80c9711
515   brk(0x80c972f)                    = 0x80c972f
515   brk(0x80c9740)                    = 0x80c9740
515   brk(0x80c978c)                    = 0x80c978c
515   waitpid(-1, 0xffffc8b0, WNOHANG)  = -1 ECHILD (No child processes)
515   brk(0x80c988c)                    = 0x80c988c
515   exit(0)                           = ?
515   +++ exited with 0 +++
502   <... wait4 resumed>[{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 14
502   --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=14, si_uid=999, si_status=0, si_utime=0, si_stime=0} ---
502   rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x4d4b10}, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x4d4b10}, 8) = 0
502   rt_sigaction(SIGQUIT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x4d4b10}, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x4d4b10}, 8) = 0
502   open("config.status.hkJTSj", O_RDWR|O_CREAT|O_EXCL, 0600) = 10
502   fcntl(10, F_GETFL)                = 0x8002 (flags O_RDWR|O_LARGEFILE)
502   lseek(10, 0, SEEK_CUR)            = 0
502   fstat(10, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
502   stat("config.status", 0x7fffffffdfd0) = -1 ENOENT (No such file or directory)
502   write(2, "error: in phase 'configure': unc"..., 49) = 49
500   <... pselect6 resumed>)           = 1 (in [12], left {tv_sec=43199, tv_nsec=979938930})
500   read(12, "error: in phase 'configure': unc"..., 4096) = 49
500   write(4, "gmlo\0\0\0\0D\0\0\0\0\0\0\0@ build-log 502 "..., 88 <unfinished ...>
502   write(2, "system-error \"stat\" \"~A: ~S\" (\"N"..., 80) = 80
500   <... write resumed>)              = 88
502   gettimeofday({tv_sec=1643658451, tv_usec=75089}, NULL) = 0
500   pselect6(13, [12], NULL, NULL, {tv_sec=43200, tv_nsec=0}, NULL) = 1 (in [12], left {tv_sec=43199, tv_nsec=999992039})
500   read(12, "system-error \"stat\" \"~A: ~S\" (\"N"..., 4096) = 80
502   write(1, "phase `configure' failed after 0"..., 43 <unfinished ...>
500   write(4, "gmlo\0\0\0\0c\0\0\0\0\0\0\0@ build-log 502 "..., 120 <unfinished ...>
502   <... write resumed>)              = 43

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

end of thread, other threads:[~2022-01-31 21:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-21 17:00 bug#53415: binutils-mesboot1-2.14 configure phase fails, In procedure stat: No such file or directory: "config.status" Christopher Baines
2022-01-25 22:42 ` Ludovic Courtès
2022-01-31 19:38   ` Christopher Baines

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.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).