2021-05-18 00:22:26

by Randall S. Becker

[permalink] [raw]
Subject: [Broken] RE: [ANNOUNCE] Git v2.32.0-rc0

On May 17, 2021 3:06 AM, Junio C Hamano wrote:
>To: [email protected]
>Cc: Linux Kernel <[email protected]>; git-
>[email protected]
>Subject: [ANNOUNCE] Git v2.32.0-rc0
>
>An early preview release Git v2.32.0-rc0 is now available for
>testing at the usual places. It is comprised of 545 non-merge
>commits since v2.31.0, contributed by 76 people, 29 of which are
>new faces [*].

Git 2.23.0 no longer builds on NonStop x86. Reference to pthreads is not permitted in s non-pthread build.

**** ERROR **** [1210]:
libgit.a(ipc-unix-socket.o): In function `thread_block_sigpipe':
ipc-unix-socket.o(.text+0xb87): unresolved reference to pthread_sigmask.

We are not building with pthreads. This is net-new for 2.32.0-rc0, not seen in 2.31.0.

I'm unsure as to why this file is even being included in a non-thread build.

Randall




2021-05-19 11:45:59

by Bagas Sanjaya

[permalink] [raw]
Subject: Re: [Broken] RE: [ANNOUNCE] Git v2.32.0-rc0

On 17/05/21 21.06, Randall S. Becker wrote:
> Git 2.23.0 no longer builds on NonStop x86. Reference to pthreads is not permitted in s non-pthread build.
>
> **** ERROR **** [1210]:
> libgit.a(ipc-unix-socket.o): In function `thread_block_sigpipe':
> ipc-unix-socket.o(.text+0xb87): unresolved reference to pthread_sigmask.
>
> We are not building with pthreads. This is net-new for 2.32.0-rc0, not seen in 2.31.0.
>
> I'm unsure as to why this file is even being included in a non-thread build.
>
> Randall
>
>

I can confirm the issue on my Linux box (Ubuntu).

Thanks for the reporting.

--
An old man doll... just what I always wanted! - Clara

2021-05-19 17:52:54

by Jeff Hostetler

[permalink] [raw]
Subject: Re: [Broken] RE: [ANNOUNCE] Git v2.32.0-rc0



On 5/17/21 10:06 AM, Randall S. Becker wrote:
> On May 17, 2021 3:06 AM, Junio C Hamano wrote:
>> To: [email protected]
>> Cc: Linux Kernel <[email protected]>; git-
>> [email protected]
>> Subject: [ANNOUNCE] Git v2.32.0-rc0
>>
>> An early preview release Git v2.32.0-rc0 is now available for
>> testing at the usual places. It is comprised of 545 non-merge
>> commits since v2.31.0, contributed by 76 people, 29 of which are
>> new faces [*].
>
> Git 2.23.0 no longer builds on NonStop x86. Reference to pthreads is not permitted in s non-pthread build.
>
> **** ERROR **** [1210]:
> libgit.a(ipc-unix-socket.o): In function `thread_block_sigpipe':
> ipc-unix-socket.o(.text+0xb87): unresolved reference to pthread_sigmask.
>
> We are not building with pthreads. This is net-new for 2.32.0-rc0, not seen in 2.31.0.
>
> I'm unsure as to why this file is even being included in a non-thread build.
>
> Randall
>
>

I should have ifdef'd that code with NO_PTHREADS it seems.
Let me take a look.

Jeff