From owner-freebsd-emulation@FreeBSD.ORG Tue Dec 30 06:46:52 2014 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7415A3F8 for ; Tue, 30 Dec 2014 06:46:52 +0000 (UTC) Received: from dchagin.static.corbina.net (dchagin.static.corbina.ru [78.107.232.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "dchagin.static.corbina.net", Issuer "dchagin.static.corbina.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id F26F5245B for ; Tue, 30 Dec 2014 06:46:51 +0000 (UTC) Received: from dchagin.static.corbina.net (localhost [127.0.0.1]) by dchagin.static.corbina.net (8.14.9/8.14.9) with ESMTP id sBU6kfkb003402 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 30 Dec 2014 09:46:41 +0300 (MSK) (envelope-from dchagin@dchagin.static.corbina.net) Received: (from dchagin@localhost) by dchagin.static.corbina.net (8.14.9/8.14.9/Submit) id sBU6keJ6003401; Tue, 30 Dec 2014 09:46:40 +0300 (MSK) (envelope-from dchagin) Date: Tue, 30 Dec 2014 09:46:40 +0300 From: Chagin Dmitry To: Jason Bacon Subject: Re: Linux /dev/shm Message-ID: <20141230064640.GA3354@dchagin.static.corbina.net> References: <54A212A4.1070006@uwm.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <54A212A4.1070006@uwm.edu> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: emulation@freebsd.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Dec 2014 06:46:52 -0000 On Mon, Dec 29, 2014 at 08:49:08PM -0600, Jason Bacon wrote: > > Not sure where else to ask this: > > I'm trying to run Atomistix (http://www.quantumwise.com/) on FreeBSD 10.1. > > The installer runs without a hitch, but I've run into issues with one of > the main binaries, vnl_exec. > > First problem was a missing libgomp. linux-c6-devtools installs a > dangling link in: > > /compat/linux/usr/lib/gcc/i686-redhat-linux/4.4.4/libgomp.so > > I fixed this by patching the port to include libgomp-4.4.7-11.el6.i686.rpm. > > That got vnl_exec past all the link errors, but now I'm running into this: > > Traceback (most recent call last): > File "", line 1, in > File "./zipdir/NL/__init__.py", line 17, in > File "./zipdir/NL/ComputerScienceUtilities/Singleton.py", line 120, > in > File "./build/lib/python2.7/multiprocessing/__init__.py", line 183, > in RLock > File "./build/lib/python2.7/multiprocessing/synchronize.py", line > 172, in __init__ > File "./build/lib/python2.7/multiprocessing/synchronize.py", line 75, > in __init__ > OSError: [Errno 38] Function not implemented > > From what I've found on the Linux forums, this is indicating that the > app requires a tmpfs mounted on /dev/shm as an IPC interface. Is there > any way to emulate this on FreeBSD? > yes, see r218497 commit description. it seems to me that you should mount tmpfs somewhere -- Have fun! chd