From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id F01A53858C20 for ; Wed, 13 Sep 2023 21:34:04 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org F01A53858C20 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1694640844; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=BIE+khQZN5IhXVlgZ+CIpUNZssHLT7k2bjgRFkmOYC0=; b=iHG34CviJNxvMq5/z9TwlkOAo962xgS+hDJ03uXFRz9GW9KyvLI2HWvQ7Uox6KgReAD8pa aLTg301Q5/MEhLhIWrN5UbuKNEKXihMdALg8Sws2JMMAdhfj7WyZQrddAB6TkBD0aLeD+Y VH5YuLQl/YFFi/nq4p0LIEX9lMDMWhQ= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-139-fovuXKErNmq2IrFNhGl4Qg-1; Wed, 13 Sep 2023 17:34:01 -0400 X-MC-Unique: fovuXKErNmq2IrFNhGl4Qg-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 4234A101A529; Wed, 13 Sep 2023 21:34:01 +0000 (UTC) Received: from redhat.com (unknown [10.22.8.14]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 31F4640C2009; Wed, 13 Sep 2023 21:34:01 +0000 (UTC) Received: from fche by redhat.com with local (Exim 4.94.2) (envelope-from ) id 1qgXUm-0006sy-F7; Wed, 13 Sep 2023 17:34:00 -0400 Date: Wed, 13 Sep 2023 17:34:00 -0400 From: "Frank Ch. Eigler" To: "McAllister, Colin" Cc: "elfutils-devel@sourceware.org" Subject: Re: Building Elfutils with Mingw32 Message-ID: <20230913213400.GA19324@redhat.com> References: MIME-Version: 1.0 In-Reply-To: User-Agent: Mutt/1.12.0 (2019-05-25) X-Scanned-By: MIMEDefang 3.1 on 10.11.54.1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Status: No, score=-7.0 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi, Colin - > I'm currently trying to determine the level of effort required to > compile Elfutils for Windows using MinGW. I'd like to get a version > of Elfutils compiled with libdebginfod in order to compile GDB with > debuginfod support on Windows. I've currently explored two > avenues... Nice. Please be aware of the distinct configury options to build the debuginfod client (library linked into gdb) and the server (program). Some of the packages you're looking for ("fts") are only used on the server, so you wouldn't need them for your gdb project. .../configure --help: --enable-libdebuginfod Build debuginfod client library (can be =dummy) --enable-debuginfod Build debuginfod server --enable-debuginfod-urls[=URLS] (I'm sorry I can't be more helpful with your substantial questions.) - FChE