From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jan Nieuwenhuizen Subject: mingw guile.exe cross build patch series v9 Date: Tue, 9 Aug 2016 08:41:28 +0200 Message-ID: <20160809064139.27872-1-janneke@gnu.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37821) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bX0jq-0001qf-GO for guix-devel@gnu.org; Tue, 09 Aug 2016 02:42:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bX0jk-0001Wa-HT for guix-devel@gnu.org; Tue, 09 Aug 2016 02:42:09 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Hi! Finally I have the next iteration ready. After adressing all comments on v8 and rebasing, the patches only built on core-updates. I spent a some time to find the problem with master and cherry-picking from core-updates before giving up. Now that core-updates has been merged the mingw cross patches build again. As suggested by Ludovic, I have tested all individual patches with the script below. There are no additional changes except for adding gcc-cross-x86_64 package descriptions to run these tests. Greetings, Jan TEST --8<---------------cut here---------------start------------->8--- #! /bin/bash -ex make clean || true ./bootstrap ./configure --localstatedir=/var make ./pre-inst-env guix build gcc-cross-sans-libc-x86_64-linux-gnu ./pre-inst-env guix build gcc-cross-x86_64-linux-gnu ./pre-inst-env guix build hello ./pre-inst-env guix build guile ./pre-inst-env guix build --target=mips64el-linux-gnuabi64 hello if grep mingw gnu/packages/cross-base.scm; then ./pre-inst-env guix build --target=i686-w64-mingw32 hello fi if grep mingw gnu/packages/multiprecision.scm; then ./pre-inst-env guix build --target=i686-w64-mingw32 gmp fi if grep mingw gnu/packages/ncurses.scm; then ./pre-inst-env guix build --target=i686-w64-mingw32 ncurses fi if grep mingw gnu/packages/readline.scm; then ./pre-inst-env guix build --target=i686-w64-mingw32 readline fi if grep mingw gnu/packages/guile.scm; then ./pre-inst-env guix build --target=i686-w64-mingw32 guile fi --8<---------------cut here---------------end--------------->8---