X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 25D723850434 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1603613536; bh=55YxR+P6fr8fkHbPFMhqmZHXpMsf0XivXW10KHJdz8c=; h=References:In-Reply-To:Date:Subject:To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=IeNcXb82ppTx2qYtKDDe6PGcoRVhJt2v/MW0ckfagRV6JvixInDtbjjmSskeYqg8F xwKoC9EwTS1kodpRSmGr1NevRlCXQf/OVkaLWlP56SM4J9PKBSIVcJulZ42fMAlIeQ yxKH4VmlEFYHaHHEtGeozysl4WSk5yaacoasb1gM= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 29E6E3858025 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=GkTRb0KXJwKgghueHWnwfzT2RJqNyn/zlrX5/4d3Jto=; b=YkcoZ3W0Zr6W7BRwET299ViBVCxUO6vIqLhcJNd7z/t7N0ZwcKJsWvzGSFmSZM/9f9 +0TTVyw1SE1cuar7mgzytIqXtk3l44EjpjU4vs3/FUfVJLy8cTiLNXT/1swoCFzCqBOT zH6AvEAGHTsx6baXVFGgHZE86T8yXTNOgIi6Uc4HlT8PPC/bVPboNZiBqCuj2cnQK5Rs kir2DTfmBpQSLlmgBCBbVaLzITrdO9yto6ziwFdowF83Rh3FL3BXPDiEFu8QzHxsEe99 uw6mtrzYuIbG5K5/PiqVxLK9rv76xE5m+CIJWj5Gs/13aqhEZlmMHGKu573OqSqDUgW/ nFfg== X-Gm-Message-State: AOAM533DboJKa0YaUA7IH7gPejVgcTEhydMot39uKkv4R0ov6kXEYn6A wcfLztDN1ND0mrAy2uTpyBPYusecdkjAKoCvp1qt0wjm X-Google-Smtp-Source: ABdhPJynNpt1fqKJtZ4L9R7ZN5fZ5TX+K74LsMrp/6PI0TYsM0FlgOaaZLlRNcr0DAsH5awPNseFFkQy91XbM/+T3lo= X-Received: by 2002:a67:8c5:: with SMTP id 188mr12954019vsi.1.1603613532463; Sun, 25 Oct 2020 01:12:12 -0700 (PDT) MIME-Version: 1.0 References: <2111881895 DOT 3069057 DOT 1603601059475 DOT ref AT mail DOT yahoo DOT com> <2111881895 DOT 3069057 DOT 1603601059475 AT mail DOT yahoo DOT com> <87o8kqwx9i DOT fsf AT Rainer DOT invalid> In-Reply-To: <87o8kqwx9i.fsf@Rainer.invalid> Date: Sun, 25 Oct 2020 04:12:01 -0400 Message-ID: Subject: Fwd: Unable to extract GMP version information from gmp_version :mingw To: Cygwin X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.29 List-Id: General Cygwin discussions and problem reports List-Archive: List-Post: List-Help: List-Subscribe: , From: Jim McNamara via Cygwin Reply-To: Jim McNamara Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "Cygwin" Thanks Achim. I fixed the ld_library_path. I was wondering about the tip you gave me on devel packages not being split from runtime in mingw. Now I know for sure. I since added the bin directory to path for the mingw files for the x64 directory. Very cool. I have to crash now. I will work on this later today. Have a good night. Roboloki ---------- Forwarded message --------- From: Achim Gratz Date: Sun, Oct 25, 2020, 4:01 AM Subject: Re: Unable to extract GMP version information from gmp_version :mingw To: Jim McNamara via Cygwin writes: > I am experimenting with mingW64 with cygwin. Have you ever used a cross-compilation toolchain before? > My ./configure looks like this: > $ echo $LD_LIBRARY_PATHC:/cygwin/lib Not sure what you are trying to achieve there, but even if it was working it would be wrong. > $ ./configure --prefix=/home/user/cobol-3.1-rc1 --host=x86_64-w64-mingw32 Is your configure script set up to actually work with cross-compilation? Your output doesn't seem to contain any notion of the configury checking the cross toolchain. > I installed the gmp package for mingw64. Correct. > I went in and installed libgmp mingW64 package and the headers for in > devel section of the cygwin installer. Whatever devel package you found there is most likely for Cygwin, but it's hard to know without the package name. The mingw64-* packages are all standalone devel packages, only the Cygwin packages are split into runtime and devel. > I have the file libgmp.dll.a in c:/cygwin/lib That's not the link library for MingW, but for Cygwin. > Please let me know if there is anything i can do to get past this error. Maybe you look at some of the cross-compiled stuff in Cygwin and take it from there? Regards, Achim. -- +<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+ SD adaptation for Waldorf microQ V2.22R2: http://Synth.Stromeko.net/Downloads.html#WaldorfSDada -- 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 -- 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