From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from m0.truegem.net (m0.truegem.net [69.55.228.47]) by sourceware.org (Postfix) with ESMTPS id 1D65A3886C63 for ; Thu, 24 Jun 2021 07:11:00 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1D65A3886C63 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=maxrnd.com Authentication-Results: sourceware.org; spf=none smtp.mailfrom=maxrnd.com Received: from localhost (mark@localhost) by m0.truegem.net (8.12.11/8.12.11) with ESMTP id 15O7AxNg059956 for ; Thu, 24 Jun 2021 00:10:59 -0700 (PDT) (envelope-from mark@maxrnd.com) X-Authentication-Warning: m0.truegem.net: mark owned process doing -bs Date: Thu, 24 Jun 2021 00:10:59 -0700 (PDT) From: Mark Geisert X-X-Sender: mark@m0.truegem.net To: cygwin-developers@cygwin.com Subject: Small problem building cygserver from source Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Spam-Status: No, score=-1.6 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: cygwin-developers@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component developers mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Jun 2021 07:11:04 -0000 Hi folks, I'm seeing this build problem while building the whole Cygwin ball of wax for local testing... Making all in cygserver make[3]: Entering directory '/c/staging/newlib-cygwin/build/x86_64-pc-cygwin/winsup/cygserver' CXXLD cygserver.exe /usr/lib/gcc/x86_64-pc-cygwin/10/../../../../x86_64-pc-cygwin/bin/ld: /usr/lib/w32api/libadvapi32.a(daltbs00499.o):(.idata$5+0x0): multiple definition of `__imp_LsaStorePrivateData'; /oss/build/x86_64-pc-cygwin/winsup/cygwin/libcygwin.a(d000097.o):(.idata$5+0x0): first defined here /usr/lib/gcc/x86_64-pc-cygwin/10/../../../../x86_64-pc-cygwin/bin/ld: /usr/lib/w32api/libadvapi32.a(daltbs00471.o):(.idata$5+0x0): multiple definition of `__imp_LsaOpenPolicy'; /oss/build/x86_64-pc-cygwin/winsup/cygwin/libcygwin.a(d000093.o):(.idata$5+0x0): first defined here /usr/lib/gcc/x86_64-pc-cygwin/10/../../../../x86_64-pc-cygwin/bin/ld: /usr/lib/w32api/libadvapi32.a(daltbs00437.o):(.idata$5+0x0): multiple definition of `__imp_LsaClose'; /oss/build/x86_64-pc-cygwin/winsup/cygwin/libcygwin.a(d000084.o):(.idata$5+0x0): first defined here collect2: error: ld returned 1 exit status make[3]: *** [Makefile:534: cygserver.exe] Error 1 I was not able to determine why libadvapi32.a is apparently being pulled in here or what was doing that. FYI, ..mark