DMARC-Filter: OpenDMARC Filter v1.4.2 delorie.com 5A9A2C2t474377 Authentication-Results: delorie.com; dmarc=pass (p=none dis=none) header.from=cygwin.com Authentication-Results: delorie.com; spf=pass smtp.mailfrom=cygwin.com DKIM-Filter: OpenDKIM Filter v2.11.0 delorie.com 5A9A2C2t474377 Authentication-Results: delorie.com; dkim=pass (1024-bit key, unprotected) header.d=cygwin.com header.i=@cygwin.com header.a=rsa-sha256 header.s=default header.b=FIF0oR3z X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6F7D53858C36 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1762682530; bh=wAIIiFsQhElzGIx8nHbNvk0I9TYLzJxLTYol7cIJloI=; h=Subject:To:References:Date:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=FIF0oR3zRgMKsZJfbhjQY5Jk3KBzFsUa5od9EznQhryYHOzpxR+/M7tmArG5Hn1bR rBs4dRxdbUQep/pEqhKjgqtRMBFDlWHb8O2JCazEAS1ses5afgLH5oARMgpin6tb1H 6d32fPd4O3khTDrxd2F9L9BsKYl1dsn6RJuxyTAw= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org DC70F3858D33 ARC-Filter: OpenARC Filter v1.0.0 sourceware.org DC70F3858D33 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1762682503; cv=none; b=XXBarU+u5Ba4DbnwXEibW9J9CyWwAhLOKeYg3ke4c44o0fpZR2BAtXTEodTZ5a2e77My7JMi59g0jdKFe5DE+PkOxbafEDmx6Dlb376zICvdjuLIc55A4+8wuAWVuyKhCYFF/dQTjeHYc9EFfuL2CvEhLePbn5m8nfTbSeO0FgQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1762682503; c=relaxed/simple; bh=GX4QszF6eecuSbpZTVAKvoZIJ7MqknvcIp7Ja6nbtic=; h=From:Subject:To:Message-ID:Date:MIME-Version; b=QOZLWHZ90aADKzQtBM3pdgUScI8ygDK8icFBeVX/GIz5Yvi7PayEm+S1fhJWa9AOFo5F9Zbi0oEQMUHtCYMd6gux1S+wZBYEWHXjgIVw5iUWTjPwfZS4w9PNAFl/X/xqdX1skVLO8ok+3kfxHXCBkOgUvW8sNNPNudjk8YOSIw0= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DC70F3858D33 Subject: Re: libargp package breaks getent utility To: cygwin AT cygwin DOT com References: Message-ID: <0cde1aff-838d-d9d9-1ac7-192ae5291335@t-online.de> Date: Sun, 9 Nov 2025 11:01:35 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 SeaMonkey/2.53.21 MIME-Version: 1.0 In-Reply-To: X-TOI-EXPURGATEID: 150726::1762682496-03FFCA9E-C74F733F/0/0 CLEAN NORMAL X-TOI-MSGID: 57da1071-54f0-4f5b-a636-eb009dd858df X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.30 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Christian Franke via Cygwin Reply-To: cygwin AT cygwin DOT com Cc: Christian Franke Content-Type: text/plain; charset="utf-8"; Format="flowed" Errors-To: cygwin-bounces~archive-cygwin=delorie DOT com AT cygwin DOT com Sender: "Cygwin" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id 5A9A2C2t474377 Christian Franke wrote: > Cedric Blancher via Cygwin wrote: >> On Sat, 8 Nov 2025 at 12:50, Cedric >> Blancher wrote: >>> Good morning! >>> >>> /usr/bin/getent passwd and /usr/bin/getent group no longer yield any >>> output in the latest Cygwin 3.7-dev binaries. >>> >>> Something broke. >>> >>> I did some digging, and even /usr/bin/getent --help does not work >>> anymore. strace getent then reported that the function "argp_parse" is >>> missing in the binary. >>> Downgrading the package does not help. >> Downgrading the libargp package solved the problem. > > This also applies to the few other tools which appear in 'rdepends': > f3read, f3write, nosleep, rngtest. > https://cygwin.com/packages/summary/libargp.html According to gdb, programs fail during startup with 0xc0000139 (STATUS_ENTRYPOINT_NOT_FOUND). A message box shown when running an affected program directly from cmd.exe reveals the problem: Entrypoint "argp_parse" is missing. $ objdump -p /bin/cygargp-0.dll | grep argp_parse         [  56] +base[  57]  0038 rpl_argp_parse Previous version: $ objdump -p /bin/cygargp-0.dll | grep argp_parse         [  24] +base[  25]  0018 argp_parse Current actually maps 'argp_parse' to 'rpl_argp_parse': $ printf '#include \nargp_parse' | gcc -E -xc - | tail -1 rpl_argp_parse $ grep -B1 rpl_argp_parse /usr/include/argp-config.h /* Define to the name of argp_parse outside libc. */ #define argp_parse rpl_argp_parse -- Regards, Christian -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple