From owner-freebsd-questions@FreeBSD.ORG Wed Aug 13 19:58:51 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87ED1106566C for ; Wed, 13 Aug 2008 19:58:51 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from mail-gx0-f17.google.com (mail-gx0-f17.google.com [209.85.217.17]) by mx1.freebsd.org (Postfix) with ESMTP id 2F4FA8FC1C for ; Wed, 13 Aug 2008 19:58:51 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by gxk10 with SMTP id 10so1491986gxk.19 for ; Wed, 13 Aug 2008 12:58:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=+VxVxpd3gn1yt1Sm9fB53hNfeqqto82BrkeLx47WsqY=; b=cOvBATgC40nD+Ati+enpzUk+IqFsGJV84sr1DPa+9FUqntzs52xrLCVkcvAnR/Ipim 69l+eaKggAraIvPUVVmeP5YGI2xd9/rQYLosnvI9OUDe7ZcXgbNlO6UK+HxNrgipvbBm eVyxbChL20hMIADq1fbZHXGEf+o2MR1+XKR2Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:to:subject:cc:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:references; b=MLZMzxR8FuEDeObzrNLebqeqFLVaa/9c4C3tM32mhdrmDDvWvjBXlPzoTiCzwtwe54 jSR9FPFnbj9PrYkz7IG7NP62PdmWZJ4SfJ4F9M1r+k1F4q7TkCGLYAuSveUX/5Clos0S UO+ZfuEBSv9Iq+b8NFLQiihkCnReKbM7Ir3bA= Received: by 10.151.114.9 with SMTP id r9mr316068ybm.201.1218657530496; Wed, 13 Aug 2008 12:58:50 -0700 (PDT) Received: by 10.150.140.14 with HTTP; Wed, 13 Aug 2008 12:58:50 -0700 (PDT) Message-ID: <8cb6106e0808131258i326b0f9fx436a76e165f8c023@mail.gmail.com> Date: Wed, 13 Aug 2008 15:58:50 -0400 From: "Josh Carroll" To: Jim In-Reply-To: <80f4f2b20808131245h2ceb17abt1671ef36c35f9996@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80f4f2b20808130917k2ddc8a3aj54edd9fe79c83788@mail.gmail.com> <200808131406.05129.lists@jnielsen.net> <80f4f2b20808131120t7a1245d8t4b01506c0f0818ba@mail.gmail.com> <20080813191640.GA11361@slackbox.xs4all.nl> <539c60b90808131225u156aa566id7df0b4ef68f638e@mail.gmail.com> <80f4f2b20808131245h2ceb17abt1671ef36c35f9996@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: ATi & Intel graphics X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2008 19:58:51 -0000 > Jail. I suspect I could build the base system plus X and copy > everything over to a jailed dir. Once there, I could set -m32 in the > CFLAGS and CXXFLAGS of the system make.conf. Build WINE in the jail, > add a /usr/local... bin32, lib32 and libexec32 to the main (non-jail) > part of the OS, and copy everything there. Then update the path and > libpath for my system... OK, not simple, but it'll be an interesting > experiment. I tried this a while ago with a chroot. I installed 7.0-RELEASE/i386 there, and built ports inside the chroot. You need to also do a few things to trick things like libtool (and other auto* tools) that your arch is i386 and not amd64. From memory, I think you need to: env UNAME_m=i386 make ... For what it's worth, I got wine (and all depends) built, but it did not work. It is likely I made a mistake along the way, of course. I believe the resulting binary was generating a SIGABRT. Naturally, if you have success doing this, it might be worth publishing the (excruciating) details. Regards, Josh