From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44307) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YP8xb-0005Fu-Lx for qemu-devel@nongnu.org; Sat, 21 Feb 2015 07:15:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YP8xY-0001aG-Gj for qemu-devel@nongnu.org; Sat, 21 Feb 2015 07:15:03 -0500 Received: from mail-lb0-f174.google.com ([209.85.217.174]:39781) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YP8xY-0001aA-9P for qemu-devel@nongnu.org; Sat, 21 Feb 2015 07:15:00 -0500 Received: by lbvn10 with SMTP id n10so10979271lbv.6 for ; Sat, 21 Feb 2015 04:14:59 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <19A8F2D4-48FC-42F4-A651-082B9B934A3A@gmail.com> References: <19A8F2D4-48FC-42F4-A651-082B9B934A3A@gmail.com> From: Peter Maydell Date: Sat, 21 Feb 2015 21:14:39 +0900 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [PATCH v3] Makefile.target: set icon for binary file on Mac OS X List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Programmingkid Cc: Paolo Bonzini , qemu-devel qemu-devel On 20 February 2015 at 05:51, Programmingkid wrote: > This patch sets the icon for the QEMU binary on Mac OS X. > > Signed-off-by: John Arbuckle > > --- > Added conditional code to make the icon setting happen only on Mac OS X. > > Makefile.target | 4 + > pc-bios/qemu.rsrc | 1504 +++++++++++++++++++++++++++++++++++++++++++++++++++++ > 2 files changed, 1508 insertions(+), 0 deletions(-) > create mode 100644 pc-bios/qemu.rsrc I'm afraid this doesn't build for me: LINK aarch64-softmmu/qemu-system-aarch64 Rez -append ../pc-bios/qemu.rsrc -o qemu-system-aarch64 ### /Applications/Xcode.app/Contents/Developer/usr/bin/Rez - SysError 0 during open of "../pc-bios/qemu.rsrc". Fatal Error! ### /Applications/Xcode.app/Contents/Developer/usr/bin/Rez - Fatal Error, can't recover. ../pc-bios/qemu.rsrc: ### /Applications/Xcode.app/Contents/Developer/usr/bin/Rez - Since errors occurred, qemu-system-aarch64's resource fork was not completely updated. ../pc-bios/qemu.rsrc: ### /Applications/Xcode.app/Contents/Developer/usr/bin/Rez - SysError -43 during set file info. make[1]: *** [qemu-system-aarch64] Error 3 make[1]: *** Deleting file `qemu-system-aarch64' make: *** [subdir-aarch64-softmmu] Error 2 I think it's failing to cope with building in a separate build tree -- pc-bios/qemu.rsrc is only in the source tree, not the build tree. thanks -- PMM