From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34848) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUVNv-0000Pq-Qi for qemu-devel@nongnu.org; Fri, 20 Jan 2017 04:21:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUVNs-0006Tr-M0 for qemu-devel@nongnu.org; Fri, 20 Jan 2017 04:21:27 -0500 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:40555 helo=mx0a-001b2d01.pphosted.com) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cUVNs-0006TM-GT for qemu-devel@nongnu.org; Fri, 20 Jan 2017 04:21:24 -0500 Received: from pps.filterd (m0098413.ppops.net [127.0.0.1]) by mx0b-001b2d01.pphosted.com (8.16.0.20/8.16.0.20) with SMTP id v0K9JRSk134582 for ; Fri, 20 Jan 2017 04:21:24 -0500 Received: from e06smtp05.uk.ibm.com (e06smtp05.uk.ibm.com [195.75.94.101]) by mx0b-001b2d01.pphosted.com with ESMTP id 283fpggc87-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Fri, 20 Jan 2017 04:21:23 -0500 Received: from localhost by e06smtp05.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 20 Jan 2017 09:21:20 -0000 Date: Fri, 20 Jan 2017 10:21:04 +0100 From: Cornelia Huck In-Reply-To: References: <20170117085645.4267-1-cornelia.huck@de.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Message-Id: <20170120102104.69dac2c7.cornelia.huck@de.ibm.com> Subject: Re: [Qemu-devel] [PULL 00/12] s390x update List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: Christian Borntraeger , Alexander Graf , Jens Freimann , QEMU Developers On Thu, 19 Jan 2017 18:32:44 +0000 Peter Maydell wrote: > Hi; I'm afraid this fails to build on Windows: >=20 > /home/petmay01/linaro/qemu-for-merges/hw/s390x/s390-pci-bus.c: In > function =E2=80=98s390_pci_get_iommu=E2=80=99: > /home/petmay01/linaro/qemu-for-merges/hw/s390x/s390-pci-bus.c:415:20: > error: cast from pointer to integer of different size > [-Werror=3Dpointer-to-int-cast] > uint64_t key =3D (unsigned long)bus; > ^ > /home/petmay01/linaro/qemu-for-merges/hw/s390x/s390-pci-bus.c: In > function =E2=80=98s390_pci_iommu_free=E2=80=99: > /home/petmay01/linaro/qemu-for-merges/hw/s390x/s390-pci-bus.c:539:20: > error: cast from pointer to integer of different size > [-Werror=3Dpointer-to-int-cast] > uint64_t key =3D (unsigned long)bus; > ^ > cc1: all warnings being treated as errors >=20 >=20 > You probably wanted uintptr_t. Fixed and v2 sent. I'm wondering if there is any way to catch this earlier (without actually building on Windows)? My mingw 4.8.2 cross-build worked fine...