From mboxrd@z Thu Jan 1 00:00:00 1970 MIME-Version: 1.0 In-Reply-To: <5f67ead6f48c116a69a892a57931d4d2@brasstown.quanstro.net> References: <4fdbe45db39b4c9d8bb6f360e12dde9c@brasstown.quanstro.net> <5f67ead6f48c116a69a892a57931d4d2@brasstown.quanstro.net> Date: Wed, 1 Sep 2010 23:35:44 -0700 Message-ID: From: ron minnich To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [9fans] problem with building from source on vx32 solved Topicbox-Message-UUID: 4d9af660-ead6-11e9-9d60-3106f5b1d025 OK, the problem with _tos on 9vx is making some sense. gcc and 8c disagree on the size of the Tos struct. It's declared the same way in 9vx as in Plan 9, but 8c thinks it is 56 bytes and gcc thinks it is 88. The reason is that 9vx is compiled on a 64-bit machine in this case, so we are running 32-bit binaries on a 64-bit kernel, i.e. it is heterogeneous. Amusing :-) Guess I'll try 9vx as a 32-bit binary and see what shakes. ron